15 lines
340 B
HTML
15 lines
340 B
HTML
{% extends "boatmovers_base.html" %}
|
|
|
|
{% block main %}
|
|
<h1>
|
|
{{ athlete.first_name }} {{ athlete.last_name }}
|
|
</h1>
|
|
<p>
|
|
<form method="post" nctype="multipart/form-data">
|
|
{{ form.as_p }}
|
|
<input type="hidden" name="action" value="create" />
|
|
<input type="submit" value="Submit"/>
|
|
</form>
|
|
</p>
|
|
{% endblock %}
|