im/inventory/templates/inventory/unit_list.html

11 lines
206 B
HTML
Raw Normal View History

2021-07-04 19:05:00 +00:00
{% extends 'inventory/base.html' %}
{% block content %}
<h2>Units</h2>
<ul>
{% for unit in object_list %}
<li>{{ unit.name }}</li>
{% endfor %}
</ul>
{% endblock %}