18 lines
366 B
HTML
18 lines
366 B
HTML
|
<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>
|