21 lines
426 B
HTML
Executable file
21 lines
426 B
HTML
Executable file
<html>
|
|
<head>
|
|
<title>Neues Berichtsheft</title>
|
|
{% include 'head.html' %}
|
|
</head>
|
|
<body>
|
|
<h1>Neues Berichtsheft</h1>
|
|
|
|
<p>{{ user.display_name }}</p>
|
|
<p>Berichtsheft {{ year }} / {{ week }}</p>
|
|
<p>Von: {{ start_date|date:"d.m.Y" }} bis: {{ end_date|date:"d.m.Y" }}</p>
|
|
|
|
<form method="post">
|
|
{{ form }}
|
|
|
|
<button>Submit</button>
|
|
|
|
{% csrf_token %}
|
|
</form>
|
|
</body>
|
|
</html>
|