azube/core/templates/report.html

20 lines
411 B
HTML
Raw Normal View History

2024-12-03 15:15:45 +01:00
<html>
<head>
<title> Berichtsheft {{ report.num }} </title>
2024-12-04 11:41:57 +01:00
{% include 'head.html' %}
2024-12-03 15:15:45 +01:00
</head>
<body>
<h1> Berichtsheft {{ report.num }} </h1>
<p> Berichtsheft {{ report.year }} / {{ report.week }} </p>
2024-12-04 11:41:57 +01:00
<p> Is Approved ? {{ report.is_approved }} </p>
2024-12-03 15:15:45 +01:00
{% for key, value in report.content.items %}
<p> {{ key }} : {{ value }} </p>
{% endfor %}
</body>
2024-12-04 09:37:01 +01:00
</html>