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
_package_details.html
_package_vlogs.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
problem.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
35 lines
1.1 KiB
HTML
35 lines
1.1 KiB
HTML
{% load url from future %}
|
|
{% load djeuscan_helpers %}
|
|
|
|
<table id="table" class="display">
|
|
<thead>
|
|
<th>Herd</th>
|
|
<th><img src="{{ STATIC_URL }}img/gentoo-icon.png" alt="gentoo" title="Versions in Gentoo" /></th>
|
|
<th><img src="{{ STATIC_URL }}img/overlay-icon.png" alt="overlays" title="Versions in Overlays" /></th>
|
|
<th><img src="{{ STATIC_URL }}img/upstream-icon.png" alt="upstream" title="Versions only upstream" /></th>
|
|
<th><img src="{{ STATIC_URL }}img/freshness-icon.png" title="Freshness" /></th>
|
|
{% if extras %}
|
|
<th>Graphs</th>
|
|
{% endif %}
|
|
</thead>
|
|
<tbody>
|
|
{% for herd in herds %}
|
|
<tr>
|
|
<td>
|
|
<a href="{% url "herd" herd.herds__herd %}">
|
|
{{ herd.herds__herd }}
|
|
</a>
|
|
{% package_bar herd %}
|
|
</td>
|
|
{% package_cols herd %}
|
|
{% if extras %}
|
|
<td>
|
|
<img src="{% url "chart_herd" herd.herds__herd 'packages-monthly-small' %}" />
|
|
<img src="{% url "chart_herd" herd.herds__herd 'versions-monthly-small' %}" />
|
|
</td>
|
|
{% endif %}
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|