{% extends '_base.html' %} {% load buttons %} {% load custom_links %} {% load helpers %} {% block header %}
{% if perms.tenancy.add_tenant %} {% clone_button tenant %} {% endif %} {% if perms.tenancy.change_tenant %} {% edit_button tenant %} {% endif %} {% if perms.tenancy.delete_tenant %} {% delete_button tenant %} {% endif %}

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

{% include 'inc/created_updated.html' with obj=tenant %}
{% custom_links 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 %}