Umbenennen des Projektordners

This commit is contained in:
juhnsa
2025-03-15 21:21:53 +01:00
parent 35617470c4
commit defbc5b95d
87 changed files with 0 additions and 0 deletions

View File

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