1234567891011121314151617181920212223242526272829303132333435 |
- {% extends "zitap/index.html" %}
- {% load static %}
- {% load i18n %}
- {% block title %}{% trans "Create Event" %}{% endblock %}
- {% block content %}
- <div class="outline">
- <h1>Create Event</h1>
- <form action="{% url 'create-event' %}" method="post">
- {% csrf_token %}
- <div class="grid-container">
- {% for field in form %}
- <div class="{{ field.name }}">
- <p>
- {{ field.label_tag }}<br>
- {{ field }}
- {% if field.help_text %}
- <small>{{ field.help_text }}</small>
- {% endif %}
- {% if field.errors %}
- <small>{{ field.errors }}</small>
- {% endif %}
- </p>
- </div>
- {% endfor %}
- </div>
- {{ form.non_field_errors }}
- <input type="submit" value="Create Event">
- </form>
- </div>
- <script type="text/javascript" src="{% static 'zitap/js/mouse-drag.js' %}"></script>
- {% endblock %}
|