2012-07-20 09:04:15 +02:00
|
|
|
{% load djeuscan_helpers %}
|
2012-03-02 18:01:46 +01:00
|
|
|
{% load sub %}
|
|
|
|
{% load div %}
|
|
|
|
{% load mul %}
|
2012-07-20 09:04:15 +02:00
|
|
|
{% load djeuscan_helpers %}
|
2011-04-15 19:28:37 +02:00
|
|
|
|
2012-05-06 20:27:14 +02:00
|
|
|
{% load url from future %}
|
|
|
|
|
2011-04-15 19:28:37 +02:00
|
|
|
<table id="table" class="display">
|
|
|
|
<thead>
|
|
|
|
<th>Package</th>
|
2012-04-04 14:33:40 +02:00
|
|
|
<th><img src="{{ STATIC_URL }}img/gentoo-icon.png" alt="gentoo" title="Last version in Gentoo" /></th>
|
|
|
|
<th><img src="{{ STATIC_URL }}img/overlay-icon.png" alt="overlays" title="Last version in Overlays" /></th>
|
|
|
|
<th><img src="{{ STATIC_URL }}img/upstream-icon.png" alt="upstream" title="Last version Upstream" /></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>
|
2011-04-15 19:28:37 +02:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for package in packages %}
|
2011-04-25 22:27:32 +02:00
|
|
|
<tr>
|
2011-04-15 19:28:37 +02:00
|
|
|
<td>
|
2012-05-06 20:27:14 +02:00
|
|
|
<a href="{% url "package" package.category package.name %}">
|
2012-04-28 18:29:21 +02:00
|
|
|
{{ package.category }}/{{ package.name }}
|
2011-04-15 19:28:37 +02:00
|
|
|
</a>
|
2011-04-25 22:27:32 +02:00
|
|
|
{% package_bar package %}
|
2011-04-15 19:28:37 +02:00
|
|
|
</td>
|
2012-07-17 16:51:38 +02:00
|
|
|
<td>
|
|
|
|
{% with vtype=package.last_version_gentoo.version|version_type %}
|
|
|
|
{% if not vtype|is_stable %}
|
|
|
|
<img src="{{ STATIC_URL }}img/unstable-icon.png" alt="unstable" title="{{ vtype }}" />
|
|
|
|
{% endif %}
|
|
|
|
{% endwith %}
|
|
|
|
|
|
|
|
{{ package.last_version_gentoo.version }}
|
|
|
|
</td>
|
2012-03-02 18:01:46 +01:00
|
|
|
<td>{{ package.last_version_overlay.version }}</td>
|
|
|
|
<td>{{ package.last_version_upstream.version }}</td>
|
2011-04-25 22:27:32 +02:00
|
|
|
{% package_cols package %}
|
2011-04-15 19:28:37 +02:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|