52 lines
1.2 KiB
HTML
52 lines
1.2 KiB
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h2>Contest Rules && Overview!</h2>
|
||
|
<div class="row">
|
||
|
<div class="col-sm-6">
|
||
|
<div class="panel panel-default">
|
||
|
<div class="panel-body">
|
||
|
<div class="panel-heading">The Contest</div>
|
||
|
<p>
|
||
|
Welcome to {{ contest.name }}!
|
||
|
<p/>
|
||
|
<p>We might be laid back people here at {{ contest.name }}, but we have some rules!</p>
|
||
|
<p>The <abbr title="Frequency">QRG</abbr>-changing is a serious thing. Also there is other stuff. But
|
||
|
maybe it's funnier if you find that out by yourself. And we punish you for not knowing. Such
|
||
|
is live.
|
||
|
</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="col-sm-6">
|
||
|
<div class="panel panel-default">
|
||
|
<div class="panel-body">
|
||
|
<div class="panel-heading">QRGs</div>
|
||
|
<p>The following frequencies may be used in this contest</p>
|
||
|
<table class="table table-inverse">
|
||
|
<thead class="thead-inverse">
|
||
|
<tr>
|
||
|
<th>Channel</th>
|
||
|
<th>Band</th>
|
||
|
<th>QRG</th>
|
||
|
<th>Note</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
{% for qrg in qrgs %}
|
||
|
<tr>
|
||
|
<td>{{ qrg.channel }}</td>
|
||
|
<td>{{ qrg.band }}</td>
|
||
|
<td>{{ qrg.qrg }}</td>
|
||
|
<td>{{ qrg.note }}</td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
</tbody>
|
||
|
</table>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endblock %}
|
||
|
|