This commit is contained in:
Angelo Rodriguez 2024-12-03 15:15:45 +01:00
parent 638ae328ea
commit d2e6b65a12
8 changed files with 123 additions and 19 deletions

18
core/templates/report.html Executable file
View file

@ -0,0 +1,18 @@
<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>