New structure

This commit is contained in:
2025-03-08 16:21:40 +01:00
parent ba77d72091
commit 213b4cfd77
27 changed files with 48 additions and 1335 deletions

View File

@@ -0,0 +1,13 @@
{% extends 'base.html' %}
{% block content %}
<h1>Formular</h1>
<h2>{{ form.name.value }}</h2>
<div class="input-group">
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<button type="submit">Speichern</button>
</form>
</div>
{% endblock %}