azube/core/templates/write.html
Angelo Rodriguez 34f3367a08 work
2024-12-04 09:37:01 +01:00

20 lines
396 B
HTML
Executable file

<html>
<head>
<title>Neues Berichtsheft</title>
</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>