{% extends override|default:"base_rigs.html" %} {% load widget_tweaks %} {% load button from filters %} {% load verbose_name from filters %} {% load markdown_tags %} {% block content %}
{{ type }} Details
Name
{{ object.name }}
Phone
{{ object.phone }}
Email
{{ object.email }}
Address
{{ object.address|linebreaksbr }}
Notes
{{ object.notes|markdown }}
{% if object.three_phase_available is not None %}
Three Phase Available
{{ object.three_phase_available|yesno|capfirst }}
{% endif%} {% if object.on_campus is not None %}
{{ object|verbose_name:"on_campus" }}
{{ object.on_campus|yesno|capfirst }}
{% endif%} {% if object.union_account is not None %}
Union Account
{{ object.union_account|yesno|capfirst }}
{% endif%}
{% if associated %} {% include associated|safe %} {% endif %}
{% if associated2 %} {% include associated2|safe %} {% endif %} {% if not request.is_ajax %}
{% if can_edit %}
{% button 'edit' update_link object.pk %}
{% endif %} {% include 'partials/last_edited.html' with target=history_link %}
{% endif %} {% endblock %} {% if request.is_ajax %} {% block footer %}
Open Page {% if can_edit %} {% button 'edit' update_link object.pk %} {% endif %}
{% include 'partials/last_edited.html' with target=history_link %}
{% endblock %} {% endif %}