Private
Public Access
1
0
Files
rowsandall/rowers/templates/stepedit.html
Sander Roosendaal cad9e6ab77 everything working,
2022-04-07 16:29:11 +02:00

39 lines
852 B
HTML

{% extends "newbase.html" %}
{% load static %}
{% load rowerfilters %}
{% block title %}Rowsandall Training Plans{% endblock %}
{% block main %}
<h2>Edit {{ step.name }}</h2>
<ul class="main-content">
<li class="grid_2">
<p>
WARNING: This is experimental functionality which may not behave as you
expect. Does not work on smartphones.
</p>
</li>
<li class="grid_2">
<h2>Step Description</h2>
{{ stepdescription }}
</li>
<li class="grid_2">
<h2>Add new step</h2>
<form enctype="multipart/multipart/form-data" method="post">
<table>
{{ form.as_table }}
</table>
{% csrf_token %}
<input name="stepsave" type="submit" value="Update">
<input name="stepsave_and_return" type="submit" value="Update and Return to Steps">
</form>
</li>
</ul>
{% endblock %}
{% block sidebar %}
{% include 'menu_plan.html' %}
{% endblock %}