front end todo - siggame/discuss GitHub Wiki
- Make dummy pages for:
- Team list:
discuss/discuss/converse/team_list.html//displays all of the teams landing page - Post list:
discuss/discuss/converse/post_list.html//posts from that team aka subreddit - Post detail:
discuss/discuss/converse/team_detail.html//the post and all the replies to that post - Create post:
discuss/discuss/converse/post_create.html
- Team list:
//MAKE THESE FORMS
-
Create comment:
discuss/discuss/converse/comment_create.html -
Update post:
discuss/discuss/converse/post_update.html -
Update comment:
discuss/discuss/converse/comment_update.html -
Create views for the templates inside
discuss/discuss/converse/views.py- They don't need to be complex,
TemplateViews are fine for now
- They don't need to be complex,
-
Connect the views to urls with
discuss/discuss/converse/urls.py- See this page for an example on
urls.py
- See this page for an example on