13 lines
210 B
HTML
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 %}
|