{% extends request.is_ajax|yesno:"base_ajax.html,base_rigs.html" %} {% load markdown_tags %} {% load button from filters %} {% block content %}
{% button 'edit' 'subhire_update' object.pk %}
{% include 'partials/contact_details.html' %}
Hire Details
Name
{{ object.name }}
Event Starts
{{ object.start_date|date:"D d M Y" }} {{ object.start_time|date:"H:i" }}
Event Ends
{{ object.end_date|date:"D d M Y" }} {{ object.end_time|date:"H:i" }}
Status
{{ object.get_status_display }}
PO
{{ object.po }}
Equipment Information
Description
{{ object.description }}
{% if perms.RIGS.subhire_finance %}
Insurance Value
£{{ object.insurance_value }}
{% endif %}
Quote
View
Associated Event(s)
{% with object.events.all as events %} {% include 'partials/event_table.html' %} {%endwith%}
{% 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 %}