euscan-ng/euscanwww/djeuscan/templates/euscan/_overlays_table.html
volpino 269fc0afa5 euscanwww: Fixing all templates to be XHTML compliant
Signed-off-by: volpino <fox91@anche.no>
2012-08-15 15:33:44 +02:00

21 lines
315 B
HTML

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