{% extends 'base_rigs.html' %} {% load widget_tweaks %} {% load static %} {% load multiply from filters %} {% block title %} {% if object.pk %} Event {% if object.is_rig %}N{{ object.pk|stringformat:"05d" }}{% else %}{{ object.pk }}{% endif %} {% else %}New Event{% endif %} {% endblock %} {% block css %} {% endblock %} {% block preload_js %} {% endblock %} {% block js %} {% endblock %} {% block content %} {% include 'item_modal.html' %}
{% csrf_token %}

{% if duplicate %} Duplicate of Event N{{ object.pk|stringformat:"05d" }} {% elif object.pk %} Event N{{ object.pk|stringformat:"05d" }} {% else %} New Event {% endif %}

{% include 'form_errors.html' %} {% render_field form.is_rig style="display: none" %} {# New rig buttons #} {% if not object.pk %}
{% endif %} {# Contact details #} {% include 'partials/contact_details_form.html' %} {# Event details #} {% include 'partials/event_details_form.html' %} {# Notes and item shit #}
{% render_field form.notes class+="form-control" %}
{% include 'item_table.html' %}
{% endblock %}