euscan-ng/euscanwww/djeuscan/templates/euscan/_overlays_table.html

19 lines
294 B
HTML
Raw Normal View History

{% load url from future %}
<table id="table" class="display">
<thead>
<th>Overlay</th>
</thead>
<tbody>
{% for overlay in overlays %}
<tr>
<td>
<a href="{% url "overlay" overlay %}">
{{ overlay }}
</a>
</td>
</tr>
{% endfor %}
</tbody>
</table>