Files
jonnybravo c0cfe686d1
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after -56s
switch to ras-dan-01
2025-03-31 15:21:28 +02:00

23 lines
575 B
HTML

{% 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 %}