azube/core/templates/write.html

21 lines
396 B
HTML
Raw Normal View History

2024-12-02 16:49:45 +01:00
<html>
2024-12-04 09:37:01 +01:00
<head>
<title>Neues Berichtsheft</title>
</head>
<body>
<h1>Neues Berichtsheft</h1>
2024-12-02 16:49:45 +01:00
2024-12-04 09:37:01 +01:00
<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>
2024-12-02 16:49:45 +01:00
2024-12-04 09:37:01 +01:00
<form method="post">
{{ form }}
2024-12-02 16:49:45 +01:00
2024-12-04 09:37:01 +01:00
<button>Submit</button>
2024-12-02 16:49:45 +01:00
2024-12-04 09:37:01 +01:00
{% csrf_token %}
2024-12-02 16:49:45 +01:00
</form>
2024-12-04 09:37:01 +01:00
</body>
2024-12-02 16:49:45 +01:00
</html>