create_multiple_shifts1.html 666 B

1234567891011121314151617181920212223
  1. {% load bootstrap5 %}
  2. {{ form.media }} {# Adds all flatpickr JS/CSS files from CDN #}
  3. <!DOCTYPE html>
  4. <html lang="de">
  5. <head>
  6. <meta charset="UTF-8">
  7. <title>Mehrere Schichten erstellen</title>
  8. {% bootstrap_css %}
  9. </head>
  10. <body>
  11. <div class="container">
  12. <h2>Mehrere Schichten erstellen</h2>
  13. <form method="post">
  14. {% csrf_token %}
  15. {{ form.as_p }} {# Renders the form #}
  16. <button type="submit" class="btn btn-primary">Schichten erstellen</button>
  17. <a href="{% url 'public' %}" class="btn btn-secondary">Abbrechen</a>
  18. </form>
  19. </div>
  20. {% bootstrap_javascript %}
  21. </body>
  22. </html>