neuer stand
This commit is contained in:
@@ -2,7 +2,22 @@
|
||||
{% block content %}
|
||||
<h1>Inventar</h1>
|
||||
<h2>{{oe_name}}</h2>
|
||||
{% for entry in dbresult %}
|
||||
{{entry}}<br>
|
||||
|
||||
<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 %}
|
||||
|
||||
Reference in New Issue
Block a user