{% extends '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 }}
Associated Assets
{% with object.assets.all as object_list %} {% include 'partials/asset_list_table_body.html' %} {% endwith %}
Asset ID Description Category Status
{% if not request.is_ajax %}
Last edited {{ object.last_edited_at }} by {{ object.last_edited_by.name }}
{% endif %} {% endblock %}