29 lines
		
	
	
		
			696 B
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			696 B
		
	
	
	
		
			HTML
		
	
	
	
| {% 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 %}
 | |
| 
 |