Private
Public Access
1
0
This commit is contained in:
Sander Roosendaal
2022-06-29 21:36:40 +02:00
parent 76dec8d3ac
commit 966b5454d3
6 changed files with 103 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
{% 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 %}