created all the menus
This commit is contained in:
15
rowers/templates/menu_teams.html
Normal file
15
rowers/templates/menu_teams.html
Normal file
@@ -0,0 +1,15 @@
|
||||
<ul class="cd-accordion-menu animated">
|
||||
<li id="manage"><a href="">Manage</a></li>
|
||||
{% if teams %}
|
||||
<li class="has-children" id="teams">
|
||||
<input type="checkbox" name="group-teams" id="group-teams">
|
||||
<label for="group-teams">Teams</label>
|
||||
<ul>
|
||||
{% for team in teams %}
|
||||
<li id="team-{{ team.id }}"><a href="">{{ team.name }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</li>
|
||||
{% endif %}
|
||||
</ul><!-- cd-accordion-menu -->
|
||||
|
||||
Reference in New Issue
Block a user