Files
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
euscan-ng/euscanwww/djeuscan/templates/euscan/_overlays_table.html
volpino fab19a6bfc euscanwww: Watch/unwatch packages, categories, maintainers, overlays
Added a button for watch/unwatch and a dashboard with user selected
stuff only

Signed-off-by: volpino <fox91@anche.no>
2012-07-10 16:15:06 +02:00

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>