azube/core/templates/report.html
Angelo Rodriguez 34f3367a08 work
2024-12-04 09:37:01 +01:00

18 lines
367 B
HTML
Executable file

<html>
<head>
<title> Berichtsheft {{ report.num }} </title>
</head>
<body>
<h1> Berichtsheft {{ report.num }} </h1>
<p> Berichtsheft {{ report.year }} / {{ report.week }} </p>
<p> Is Approved ? {{ approved }} </p>
{% for key, value in report.content.items %}
<p> {{ key }} : {{ value }} </p>
{% endfor %}
</body>
</html>