{% extends request.is_ajax|yesno:"base_ajax.html,base_rigs.html" %} {% load linkornone from filters %} {% load namewithnotes from filters %} {% block content %}
{% 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 #}
{% if event.person %}
Contact Details
Person
{% if object.person %} {{ object.person|namewithnotes:'person_detail' }} {% endif %}
Email
{{ object.person.email|linkornone:'mailto' }}
Phone Number
{{ object.person.phone|linkornone:'tel' }}
{% endif %} {% if event.organisation %}
Organisation
Organisation
{% if object.organisation %} {{ object.organisation|namewithnotes:'organisation_detail' }} {% endif %}
Email
{{ object.organisation.email|linkornone:'mailto' }}
Phone Number
{{ object.organisation.phone|linkornone:'tel' }}
Has SU Account
{{ event.organisation.union_account|yesno|capfirst }}
{% 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|linebreaksbr }}

{% endif %}
{% include 'item_table.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 %}