Files
asta-inventarsystem/inventorysystem/templates/index.html
2022-10-06 00:55:26 +02:00

13 lines
210 B
HTML

{% extends "base.html" %}
{% block content %}
<h1>AStA-Inventarsystem</h1>
<h2>OEs</h2>
<ul>
{% for oe in dbresult %}
<li><a href=/inventory/{{ oe.id }}>{{oe.name}}</a></li>
{% endfor %}
</ul>
{% endblock %}