{% 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 %}
Customer

The primary customer for this event.

{% if not form.customers %}

No customers yet. Add a customer first.

{% endif %}
Event Information
{% if form.name.errors %}
{{ form.name.errors.0 }}
{% endif %}
{% if form.date.errors %}
{{ form.date.errors.0 }}
{% endif %}
Friends

Additional customers who can view and select from this gallery.

{% for checkbox in form.customers %}
{% endfor %}
Cancel
{% endblock %} {% block extra_js %} {% endblock extra_js %}