euscanwww: Added missing icons and truncatechars

Signed-off-by: volpino <fox91@anche.no>
This commit is contained in:
volpino 2012-07-30 00:08:02 +02:00
parent 6178d66f0d
commit d34e3d4c4c
1 changed files with 18 additions and 2 deletions

View File

@ -35,8 +35,24 @@
{{ package.last_version_gentoo.version|truncatechars:15 }}
</td>
<td>{{ package.last_version_overlay.version }}</td>
<td>{{ package.last_version_upstream.version }}</td>
<td>
{% with vtype=package.last_version_overlay.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_overlay.version|truncatechars:15 }}
</td>
<td>
{% with vtype=package.last_version_upstream.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_upstream.version|truncatechars:15 }}
</td>
{% package_cols package %}
</tr>
{% endfor %}