41 lines
909 B
HTML
41 lines
909 B
HTML
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>No.</th>
|
|
<th>Time</th>
|
|
{% if logShowComplete %}
|
|
<th>Call A</th>
|
|
<th>Call B</th>
|
|
{% else %}
|
|
<th>Call</th>
|
|
{% endif %}
|
|
<th>Band</th>
|
|
<th>TX Report</th>
|
|
<th>RX Report</th>
|
|
<th>Other No.</th>
|
|
<th>Reference</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for qso in qsos %}
|
|
<tr>
|
|
<td>{{ qso.ownNo }}</td>
|
|
<td>{{ qso.time }}</td>
|
|
{% if logShowComplete %}
|
|
<td>{{ qso.owner.username }}</td>
|
|
<td>{{ qso.call }}</td>
|
|
{% else %}
|
|
<td>{{ qso.call }}</td>
|
|
{% endif %}
|
|
<td>{{ qso.band }}</td>
|
|
<td>{{ qso.reportTX }}</td>
|
|
<td>{{ qso.reportRX }}</td>
|
|
<td>{{ qso.otherNo }}</td>
|
|
<td>{{ qso.refStr }}</td>
|
|
<td><a href="{% url "contest:logEdit" qso.id %}">Edit</a> <a href="{% url "contest:logDelete" qso.id %}">Delete</a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|