{% extends request.is_ajax|yesno:'base_ajax.html,base_assets.html' %} {% block title %}Supplier | {{ object.name }}{% endblock %} {% block content %}
{% if not request.is_ajax %}

Supplier | {{ object.name }}

{% endif %}
Supplier Details
Name
{{ object.name }}
Phone
{% if object.phone %}{% endif %}{{ object.phone }}{% if object.phone %}{% endif %}
Email
{% if object.email %}{% endif %}{{ object.email }}{% if object.email %}{% endif %}
Address
{{ object.address|linebreaksbr }}
Notes
{{ object.notes|linebreaksbr }}
Associated Assets
{% with object.assets.all as object_list %} {% include 'partials/asset_list_table.html' %} {% endwith %}
{% if not request.is_ajax %}
{% include 'partials/last_edited.html' with target="supplier_history" %}
{% endif %} {% endblock %} {% if request.is_ajax %} {% block footer %}
{% include 'partials/last_edited.html' with target="supplier_history" %}
{% endblock %} {% endif %}