52 lines
1.2 KiB
HTML
52 lines
1.2 KiB
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h2>Welcome!</h2>
|
||
|
<div class="row">
|
||
|
<div class="col-sm-12">
|
||
|
<p>
|
||
|
Register Someone!!!!
|
||
|
Here be FORM for registering someone without a ref
|
||
|
</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="row">
|
||
|
<div class="col-md-6">
|
||
|
<div class="panel panel-default">
|
||
|
<div class="panel-heading">Contest Stations</div>
|
||
|
<div class="panel-body">
|
||
|
Here is a Table with all OMs/YLs in the contest!
|
||
|
<table class="table">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>Call</th>
|
||
|
<th>Ref</th>
|
||
|
<th></th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
{% for u in alluser %}
|
||
|
<tr class="{% if not u.ref %}danger{% endif %}">
|
||
|
<td>{{ u.username }}</td>
|
||
|
<td>{{ u.ref|default:"unknown / unset" }}</td>
|
||
|
<td><a href="{% url "contest:updateRef" u.id %}">Update / Create ref</a></td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
</tbody>
|
||
|
</table>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="col-md-6">
|
||
|
<div class="panel panel-default">
|
||
|
<div class="panel-heading">Current QSOs</div>
|
||
|
<div class="panel-body">
|
||
|
{% include "contest/logTable.html" with logShowComplete=1 qsos=qsos %}
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
{% endblock %}
|
||
|
|