first
This commit is contained in:
22
templates/output.html
Normal file
22
templates/output.html
Normal file
@@ -0,0 +1,22 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block body %}
|
||||
<p>
|
||||
Ausgabe = {{ csv_value_text }} <br> Beschreibung = {{csv_value_disc}}
|
||||
<br>
|
||||
</p>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Ausgaben</th>
|
||||
<th>Beschreibung</th>
|
||||
</tr>
|
||||
{% for name in data %}
|
||||
<tr>
|
||||
<td>{{ name.get("ausgabe") }}</td>
|
||||
<td> {{ name.get("beschreibung") }}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
|
||||
<p><br><h5>Gesamt: {{sum_all}}</h5>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user