miniweb/templates/admin/items/item_list.html

13 lines
232 B
HTML

{% extends "admin/base.html" %}
{% block content %}
{% if item_list %}
<ul>
{% for item in item_list %}
<li>{{ item.name }}</li>
{% endfor %}
</ul>
{% else %}
No Items found.
{% endif %}
{% endblock content %}