{% if not request.is_ajax %}
{% if perms.RIGS.view_event %}
{% include 'partials/event_detail_buttons.html' %}
{% endif %}
{% endif %}
{% if object.is_rig and perms.RIGS.view_event %}
{# only need contact details for a rig #}
{% include 'partials/contact_details.html' %}
{% if object.parking_and_access or object.riskassessment.parking_and_access %}
{% include 'partials/parking_and_access.html' %}
{% endif %}
{% endif %}
{% include 'partials/event_details.html' %}
{% if not event.dry_hire %}
{% include 'partials/hs_details.html' %}
{% endif %}
{% if event.is_rig %}
{% if event.is_rig and event.internal and perms.RIGS.view_event %}
{% include 'partials/auth_details.html' %}
{% endif %}
{% endif %}
{% if not request.is_ajax and perms.RIGS.view_event %}
{% include 'partials/event_detail_buttons.html' %}
{% endif %}
{% if event.is_rig %}
Event Details
{% if perms.RIGS.view_event %}
Notes
{{ event.notes|markdown }}
{% endif %}
{% include 'partials/item_table.html' %}
{% include 'partials/crew_list.html' %}
{% if not request.is_ajax and perms.RIGS.view_event %}
{% include 'partials/event_detail_buttons.html' %}
{% endif %}
{% endif %}
{% if not request.is_ajax and perms.RIGS.view_event %}
{% include 'partials/last_edited.html' with target="event_history" %}
{% endif %}
{% endblock %}
{% if request.is_ajax %}
{% block footer %}
{% if perms.RIGS.view_event %}
{% include 'partials/last_edited.html' with target="event_history" %}
{% endif %}
Open Event Page
{% endblock %}
{% endif %}