azube/core/templates/report.html
Angelo Rodriguez d248c99242 work+htmx
2024-12-04 11:41:57 +01:00

19 lines
411 B
HTML
Executable file

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