{% extends '_base.html' %} {% load helpers %} {% block title %}{{ tenant }}{% endblock %} {% block content %}
{% if perms.tenancy.change_tenant %} Edit this tenant {% endif %} {% if perms.tenancy.delete_tenant %} Delete this tenant {% endif %}

{{ tenant }}

Tenant
Group {{ tenant.group }}
Description {% if tenant.description %} {{ tenant.description }} {% else %} N/A {% endif %}
{% with tenant.get_custom_fields as custom_fields %} {% include 'inc/custom_fields_panel.html' %} {% endwith %}
Comments
{% if tenant.comments %} {{ tenant.comments|gfm }} {% else %} None {% endif %}
{% include 'inc/created_updated.html' with obj=tenant %}
{% endblock %}