bin
euscanwww
djeuscan
api
management
migrations
processing
templates
admin
euscan
accounts
_categories_table.html
_datatable.html
_herds_table.html
_maintainers_table.html
_overlays_table.html
_package_bar.html
_package_cols.html
_packages.html
about.html
api.html
categories.html
category.html
herd.html
herds.html
index.html
maintainer.html
maintainers.html
overlay.html
overlays.html
package.html
statistics.html
world.html
world_scan.html
registration
_base.html
templatetags
tests
__init__.py
admin.py
charts.py
feeds.py
forms.py
helpers.py
managers.py
models.py
tasks.py
urls.py
views.py
euscanwww
htdocs
scripts
var
.gitignore
INSTALL
README.Celery
__init__.py
manage.py
runtests.py
man
pym
.gitignore
AUTHORS
COPYING
Changelog
MANIFEST.in
README.rst
THANKS
TODO
setup.py
Added a button for watch/unwatch and a dashboard with user selected stuff only Signed-off-by: volpino <fox91@anche.no>
19 lines
294 B
HTML
19 lines
294 B
HTML
{% 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>
|