The club home page is first thing members will see when logging in.
Any ideas/suggestions on design or layout are welcomed. If you are comfortable in Django, you can edit the functional view clubs.views.club_home_view() to add any necessary context for dynamic data. Otherwise, just mock up a solution using plain html and css, and you can use example data in lieu of dynamic context data (ie using static value "John Doe" instead of {{ user.name }} for a user's name)
Task
[ ] Design club home page
[ ] Build home page in html/css/js
Files
Put html in app/clubs/templates/clubs/club-home.html
Put global CSS in app/static/css/style.css
Put scoped CSS (specific to that page) in app/clubs/static/clubs/club-home.css
Put JS in app/static/js/script.js
If need scoped JS, create new file: app/clubs/static/clubs/club-home.js and add link to club-home.html
Info
The club home page is first thing members will see when logging in.
Any ideas/suggestions on design or layout are welcomed. If you are comfortable in Django, you can edit the functional view
clubs.views.club_home_view()
to add any necessary context for dynamic data. Otherwise, just mock up a solution using plain html and css, and you can use example data in lieu of dynamic context data (ie using static value "John Doe" instead of {{ user.name }} for a user's name)Task
Files
app/clubs/templates/clubs/club-home.html
app/static/css/style.css
app/clubs/static/clubs/club-home.css
app/static/js/script.js
app/clubs/static/clubs/club-home.js
and add link toclub-home.html