21 lines
495 B
HTML
21 lines
495 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Change Workout {% endblock %}
|
|
|
|
{% block content %}
|
|
{% if form.errors %}
|
|
<p style="color: red;">
|
|
Please correct the error{{ form.errors|pluralize }} below.
|
|
</p>
|
|
{% endif %}
|
|
|
|
<h1>Edit Workout Data</h1>
|
|
|
|
<form enctype="multipart/form-data" action="" method="post">
|
|
<table>
|
|
{{ form.as_table }}
|
|
</table>
|
|
{% csrf_token %}
|
|
<input type="submit" value="Save">
|
|
|
|
{% endblock %} |