30 lines
535 B
HTML
30 lines
535 B
HTML
{% 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 %}
|
|
|