You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cqtu/templates/contest/logDelete.html

24 lines
526 B

{% 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!
Are you sure you want to delete this QSO?
<form method="post" action="{% url "contest:logDelete" qso.id %}">
{% csrf_token %}
<table>
<tr>
<th>QSO</th><td>{{ qso }}</td>
</tr>
</table>
<input type="submit" name="delete" value="yes">
<input type="submit" name="delete" value="no">
</form>
</div>
</div>
{% endblock %}