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

{% block title %}{{ tenant }}{% endblock %}

{% include 'inc/created_updated.html' with obj=tenant %} {% endblock %} {% block content %}
Tenant
Group {% if tenant.group %} {{ tenant.group }} {% else %} None {% endif %}
Description {{ tenant.description|placeholder }}
{% include 'inc/custom_fields_panel.html' with obj=tenant %} {% include 'extras/inc/tags_panel.html' with tags=tenant.tags.all url='tenancy:tenant_list' %}
Comments
{% if tenant.comments %} {{ tenant.comments|gfm }} {% else %} None {% endif %}
{% endblock %}