restore
This commit is contained in:
@@ -13,6 +13,13 @@
|
||||
<i class="fas fa-bullseye-pointer"></i> Manage Plans
|
||||
</a>
|
||||
</li>
|
||||
{% for plan in rower|trainingplans %}
|
||||
<li id="plan-{{ plan.id }}">
|
||||
<a href="/rowers/plan/{{ plan.id }}">
|
||||
<i class="fal fa-calendar-alt fa-fw"></i> {{ plan.name }}
|
||||
</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</li>
|
||||
<li class="has-children" id="sessions">
|
||||
@@ -63,9 +70,70 @@
|
||||
</li>
|
||||
</ul><!-- cd-accordion-menu -->
|
||||
|
||||
<p> </p>
|
||||
|
||||
<ul class="cd-accordion-menu animated">
|
||||
<li class="has-children" id="cycles">
|
||||
<input type="checkbox" name="cycle-selector" id="cycle-selector">
|
||||
<label for="cycle-selector"><i class="far fa-calendar-alt fa-fw"></i> Select Time Period</label>
|
||||
<ul>
|
||||
<li class="has-children" id="cycles-this">
|
||||
<input type="checkbox" name="cycle-this" id="cycle-this">
|
||||
<label for="cycle-this">This</label>
|
||||
<ul>
|
||||
<li>
|
||||
<a href = {{ request.path|timeurl:"thisweek" }}>
|
||||
Week
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href = {{ request.path|timeurl:"thismonth" }}>
|
||||
Month
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="has-children" id="cycles-next">
|
||||
<input type="checkbox" name="cycle-next" id="cycle-next">
|
||||
<label for="cycle-next">Next</label>
|
||||
<ul>
|
||||
<li>
|
||||
<a href = {{ request.path|timeurl:"nextweek" }}>
|
||||
Week
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href = {{ request.path|timeurl:"nextmonth" }}>
|
||||
Month
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="has-children" id="cycles-Last">
|
||||
<input type="checkbox" name="cycle-Last" id="cycle-Last">
|
||||
<label for="cycle-Last">Last</label>
|
||||
<ul>
|
||||
<li>
|
||||
<a href = {{ request.path|timeurl:"lastweek" }}>
|
||||
Week
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href = {{ request.path|timeurl:"lastmonth" }}>
|
||||
Month
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
|
||||
{% if user.is_authenticated and user|is_manager %}
|
||||
<p> </p>
|
||||
|
||||
{% if user|team_members %}
|
||||
<ul class="cd-accordion-menu animated">
|
||||
<li class="has-children" id="athletes">
|
||||
<input type="checkbox" name="athlete-selector" id="athlete-selector">
|
||||
@@ -86,3 +154,4 @@
|
||||
</li>
|
||||
</ul>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
Reference in New Issue
Block a user