Private
Public Access
1
0
Files
rowsandall/rowers/templates/trainingplan_edit.html
Sander Roosendaal a2c1777c74 teamcreate done
2018-10-12 16:55:22 +02:00

28 lines
436 B
HTML

{% extends "newbase.html" %}
{% load staticfiles %}
{% load rowerfilters %}
{% block title %}Rowsandall Training Plans{% endblock %}
{% block scripts %}
{% endblock %}
{% block main %}
<form action="" method="post">
{% csrf_token %}
<table>
{{ form.as_table }}
</table>
<input class="button green" type="submit" value="Save">
</form>
{% endblock %}
{% block sidebar %}
{% include 'menu_plan.html' %}
{% endblock %}