25 lines
		
	
	
		
			909 B
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			909 B
		
	
	
	
		
			HTML
		
	
	
	
| {% extends "base.html" %}
 | |
| 
 | |
| {% load crispy_forms_tags %}
 | |
| 
 | |
| {% block content %}
 | |
| <div class="row">
 | |
| 	<div class="col-sm-12">
 | |
| 		<div class="panel panel-default">
 | |
| 			<div class="panel-heading">QSOs by {{ owner }}</div>
 | |
| 			<div class="panel-body">
 | |
| 			<p>
 | |
| 			{{ owner }} {% if owner.ref %}is registeret at {{ owner.ref }}{% else %}has not registered an exchange{% endif %} and {% if owner.cat %}is in category <em>{{ owner.cat }}</em>{% else %}has not selected a category{% endif %}.
 | |
| 			</p>
 | |
| 			<p>
 | |
| 			{{ owner }} has {{ owner.getQSOCount }} QSO{{ owner.getQSOCount|pluralize }}, {{ owner.getCfmdQSOCount }} confirmed QSO{{ owner.getCfmdQSOCount|pluralize }} and worked the following {{ userRefs|length }} exchange{{ userRefs|length|pluralize }}: {{ userRefs|join:", " }}.
 | |
| 			</p>
 | |
| 			{% include "contest/qsoAdminTable.html" with  qsoPage=qsoPage qsoPager=qsoPager %}
 | |
| 			</div>
 | |
| 		</div>
 | |
| 	</div>
 | |
| </div>
 | |
| 
 | |
| {% endblock %}
 | |
| 
 |