euscan-ng/euscanwww/templates/euscan/categories.html
Corentin Chary 0aba96f66f euscanwww: charts, about, etc...
Signed-off-by: Corentin Chary <corentincj@iksaif.net>
2011-04-25 22:27:32 +02:00

32 lines
599 B
HTML

{% extends "euscan/_datatable.html" %}
{% load packages %}
{% block title %}
{{ block.super }} - categories
{% endblock %}
{% block content %}
<h2>Categories</h2>
<table id="table" class="display">
<thead>
<th>Category</th>
<th>Gentoo</th>
<th>Overlays</th>
<th>Unpackaged</th>
</thead>
<tbody>
{% for category in categories %}
<tr>
<td>
<a href="{% url euscan.views.category category.category %}">{{ category.category }}</a>
{% package_bar category %}
</td>
{% package_cols category %}
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}