cqtu/templates/contest/logEdit.html

22 lines
440 B
HTML
Raw Normal View History

2017-01-20 14:28:59 +01:00
{% extends "base.html" %}
{% block content %}
<div class="row">
<div class="col-sm-12">
We have the User {{ user }}, create a ref for them or choose an existing ref!
<form method="post" action="{% url "contest:logEdit" qso.id %}">
{% csrf_token %}
<table>
<tr>
<th>User</th><td>{{ user }}</td>
</tr>
{{ form.as_table }}
</table>
<input type="submit" value="Save">
</form>
</div>
</div>
{% endblock %}