kopia lustrzana https://github.com/jedie/PyInventory
18 wiersze
381 B
HTML
18 wiersze
381 B
HTML
{% load i18n admin_urls %}
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>{% trans "No." %}</th>
|
|
<th>{% trans "ItemModel.verbose_name_plural" %}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for obj in items %}
|
|
<tr>
|
|
<td>{{ forloop.counter }}</td>
|
|
<td><a href="{% url opts|admin_urlname:'change' obj.pk %}">{{ obj }}</a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table> |