| 123456789101112131415161718192021 |
- {% load bootstrap5 %}
- <!DOCTYPE html>
- <html lang="de">
- <head>
- <meta charset="UTF-8">
- <title>Event erstellen</title>
- {% bootstrap_css %}
- </head>
- <body>
- <div class="container">
- <h2>Event erstellen</h2>
- <form method="post">
- {% csrf_token %}
- {% bootstrap_form form %}
- <button type="submit" class="btn btn-primary">Event erstellen</button>
- <a href="{% url 'public' %}" class="btn btn-secondary">Abbrechen</a>
- </form>
- </div>
- {% bootstrap_javascript %}
- </body>
- </html>
|