{% extends request.is_ajax|yesno:"base_ajax.html,base_rigs.html" %} {% load markdown_tags %} {% load button from filters %} {% load static %} {% 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 #}
{% include 'partials/contact_details.html' %}
{% 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' %}
{% if event.can_check_in %}
Crew Record
{% for crew in object.crew.all %} {% empty %} {% endfor %}
Name Vehicle Start Time Role End Time {% if request.user.pk is event.mic.pk %} Add{% endif %}
{{crew.person}} {{crew.vehicle|default:"None"}} {{crew.time}} {{crew.role}} {% if crew.end_time %}{{crew.end_time}}{% else %}{% endif %} {% if crew.end_time %}{% if crew.person.pk == request.user.pk or event.mic.pk == request.user.pk %}{% button 'edit' 'edit_checkin' crew.pk clazz='btn-sm modal-href' %}{% endif %}{%endif%}
Apparently this event happened by magic...
{% endif %}
{% 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 %}