azube/core/templates/write.html
Angelo Rodriguez d248c99242 work+htmx
2024-12-04 11:41:57 +01:00

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>