{% 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 }}

{% include 'inc/created_updated.html' with obj=tenant %}
Tenant
Group {% if tenant.group %} {{ tenant.group }} {% else %} None {% endif %}
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 %}
{% endblock %}