18 lines
331 B
HTML
18 lines
331 B
HTML
{% load i18n %}
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>{% trans "Name" %}</th>
|
|
<th>{% trans "Version" %}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for package, version in versions.items %}
|
|
<tr class="{% cycle 'djDebugOdd' 'djDebugEven' %}">
|
|
<td>{{ package }}</td>
|
|
<td>{{ version }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|