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/checkAllQSOs.html

29 lines
696 B

{% extends "base.html" %}
{% load crispy_forms_tags %}
{% block content %}
<div class="row">
<div class="col-sm-6 col-sm-offset-3">
<div class="panel panel-warning">
<div class="panel-heading">Check all QSOs?</div>
<div class="panel-body">
<p>
You have the option to let the system recheck all QSOs if
they can find another matching QSO, also to re-verify exchanges
and callsigns.
</p>
<p>
<strong>This might take some time!</strong>
</p>
<form method="post" action="#">
{% csrf_token %}
<button type="submit" class="btn btn-warning center-block">Reverify EVERYTHING!</button>
</form>
</div>
</div>
</div>
</div>
{% endblock %}