20 lines
497 B
HTML
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 %}
|
|
|