Private
Public Access
1
0
Files
rowsandall/rowers/templates/cn_form.html~
sanderroosendaal 3eed3cc3e7 Uploading files
2016-10-30 17:39:32 +01:00

20 lines
497 B
HTML

{% extends "base.html" %}
{% block title %}Upload CrewNerd Summary CSV{% endblock title %}
{% block content %}
<div id="emailform" class="grid_6 alpha">
{% if form.errors %}
<p style="color: red;">
Please correct the error{{ form.errors|pluralize }} below.
</p>
{% endif %}
<form method="post" action="/rowers/workout/{{ workout.id }}/crewnerdsummary">{% csrf_token %}
<table>
</table>
</form>
</div>
{% endblock content %}