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

{{ object.name }}
Last edited {{ object.last_edited_at }} by {{ object.last_edited_by }}

{% endif %}
Name
{{ object.name }}
Phone
{{ object.phone }}
Email
{{ object.email }}
Address
{{ object.address|linebreaksbr }}
Notes
{{ object.notes|linebreaksbr }}
{% with object.latest_events as events %} {% include 'RIGS/event_table.html' %} {% endwith %}
{% endblock %} {% if request.is_ajax %} {% block footer %}
Lasted edited at {{ object.last_edited_at|date:"SHORT_DATE_FORMAT" }} by {{ object.last_edited_by }}
{% endblock %} {% endif %}