Private
Public Access
1
0

instant plans proto page

attached workout notification using encoded workout id
This commit is contained in:
Sander Roosendaal
2021-03-10 06:35:15 +01:00
parent b6ef3a8072
commit b18d04e088
5 changed files with 77 additions and 2 deletions

View File

@@ -0,0 +1,24 @@
{% extends "newbase.html" %}
{% load staticfiles %}
{% load rowerfilters %}
{% block title %}Rowsandall Training Plans{% endblock %}
{% block main %}
<h1>Training Plans</h1>
<ul class="main-content">
{% for plan in trainingdict %}
<li>
<p><a href="/rowers/plans/{{ plan.ID }}">{{ plan.name }}</a></p>
<p>{{ plan.plan|lookup:"duration"}}</p>
</li>
{% endfor %}
</ul>
{% endblock %}
{% block sidebar %}
{% include 'menu_plan.html' %}
{% endblock %}