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

30 lines
535 B

{% extends "base.html" %}
{% block content %}
<h2>Welcome!</h2>
<div class="row">
<div class="col-sm-12">
Register Someone!!!!
Here be FORM for registering someone without a ref
</div>
</div>
<div class="row">
<div class="col-sm-12">
Here is a Table with all OMs/YLs in the contest!
<table>
<tr>
<th>Call</th>
<th>Ref</th>
</tr>
{% for u in alluser %}
<tr>
<td>{{ u.username }}</td>
<td>{{ u.ref|default:"unknown / unset" }}</td>
</tr>
{% endfor %}
</table>
</div>
</div>
{% endblock %}