34d3bd714d
* Refactored templates and templatetags * Added unfavourite views * Added button to favourite/unfavourite package * Panel for showing favourited objects Signed-off-by: volpino <fox91@anche.no>
30 lines
503 B
HTML
30 lines
503 B
HTML
{% extends "euscan/_datatable.html" %}
|
|
|
|
{% load euscan %}
|
|
{% load url from future %}
|
|
|
|
{% block title %}
|
|
{{ block.super }} - overlays
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>Overlays</h2>
|
|
|
|
<table id="table" class="display">
|
|
<thead>
|
|
<th>Overlay</th>
|
|
</thead>
|
|
<tbody>
|
|
{% for overlay in overlays %}
|
|
<tr>
|
|
<td>
|
|
<a href="{% url "overlay" overlay.version__overlay %}">
|
|
{{ overlay.version__overlay }}
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endblock %}
|