| 1234567891011121314151617181920212223 |
- {% load bootstrap5 %}
- {{ form.media }} {# Adds all flatpickr JS/CSS files from CDN #}
- <!DOCTYPE html>
- <html lang="de">
- <head>
- <meta charset="UTF-8">
- <title>Mehrere Schichten erstellen</title>
- {% bootstrap_css %}
- </head>
- <body>
- <div class="container">
- <h2>Mehrere Schichten erstellen</h2>
- <form method="post">
- {% csrf_token %}
- {{ form.as_p }} {# Renders the form #}
- <button type="submit" class="btn btn-primary">Schichten erstellen</button>
- <a href="{% url 'public' %}" class="btn btn-secondary">Abbrechen</a>
- </form>
- </div>
- {% bootstrap_javascript %}
- </body>
- </html>
|