24 lines
300 B
HTML
24 lines
300 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>
|
|
|
|
{% endblock %}
|