Private
Public Access
1
0
Files
rowsandall/rowers/templates/cn_form.html
Sander Roosendaal 196548fdcc staticfiles to static
2021-04-14 10:00:14 +02:00

26 lines
578 B
HTML

{% extends "newbase.html" %}
{% load static %}
{% block title %}CrewNerd Summary loading{% endblock %}
{% block main %}
<form enctype="multipart/form-data" action="{{ formloc }}" method="post">
<h1>Upload Workout Summary File (CrewNerd)</h1>
{% if form.errors %}
<p style="color: red;">
Please correct the error{{ form.errors|pluralize }} below.
</p>
{% endif %}
<table>
{{ form.as_table }}
</table>
{% csrf_token %}
<input type="submit" value="Submit">
</form>
{% endblock %}
{% block sidebar %}
{% include 'menu_workout.html' %}
{% endblock %}