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

Organisation | {{ object.name }}

{% endif %}
Organisation Details
Name
{{ object.name }}
Phone
{{ object.phone }}
Email
{{ object.email }}
Address
{{ object.address|linebreaksbr }}
Notes
{{ object.notes|linebreaksbr }}
Union Account
{{ object.union_account|yesno|capfirst }}
Associated People
{% for person,count in object.persons %} {{ person.pk|stringformat:"05d" }} | {{ person.name }} {{count}} {% endfor %}
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="organisation_history" %}
{% endif %} {% endblock %} {% if request.is_ajax %} {% block footer %}
{% include 'partials/last_edited.html' with target="organisation_history" %}
{% endblock %} {% endif %}