24 lines
526 B
HTML
24 lines
526 B
HTML
{% 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 %}
|
|
|