26 lines
366 B
HTML
26 lines
366 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<h1>Inventar</h1>
|
|
<h2>{{oe.name}}</h2>
|
|
|
|
<table>
|
|
<tr>
|
|
{% for entry in table.headers %}
|
|
<th>{{entry}}</th>
|
|
{% endfor %}
|
|
</tr>
|
|
|
|
{% for entry in table.rows %}
|
|
<tr>
|
|
{% for x in entry %}
|
|
<td>{{x}}</td>
|
|
{% endfor %}
|
|
</tr>
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
<a href={{url_for("new_inventory", oe=oe.id)}}>Neuer Eintrag</a>
|
|
|
|
{% endblock %}
|