{% extends request.is_ajax|yesno:"base_ajax.html,base_rigs.html" %} {% load widget_tweaks %} {% block title %}Venue | {{ object.name }}{% endblock %} {% block content %}
{% if not request.is_ajax %}

Venue | {{ object.name }}

{% endif %}
Venue Details
Name
{{ object.name }}
Phone
{{ object.phone }}
Email
{{ object.email }}
Address
{{ object.address|linebreaksbr }}
Notes
{{ object.notes|linebreaksbr }}
Three Phase Available
{{ object.three_phase_available|yesno|capfirst }}
Associated Events
{% with object.latest_events as events %} {% include 'event_table.html' %} {% endwith %}
{% if not request.is_ajax %}
{% include 'partials/last_edited.html' with target="venue_history" %}
{% endif %} {% endblock %} {% if request.is_ajax %} {% block footer %}
{% include 'partials/last_edited.html' with target="venue_history" %}
{% endblock %} {% endif %}