{% extends "base.html" %} {% block title %}{% if event %}Edit{% else %}New{% endif %} Event — Jason Studio{% endblock %} {% block content %}

{% if event %}Event Details{% else %}New Event{% endif %}

Back to Dashboard
{% csrf_token %}
Customers

Select the customers who should have access to this event's gallery.

{% for checkbox in form.customers %}
{{ checkbox.tag }}
{% empty %}

No customers yet. Add customers in the Admin.

{% endfor %}
Event Information
{% if form.name.errors %}
{{ form.name.errors.0 }}
{% endif %}
{% if form.date.errors %}
{{ form.date.errors.0 }}
{% endif %}
Cancel
{% endblock %}