{% extends 'base.html' %} {% load buttons %} {% load custom_links %} {% load helpers %} {% load plugins %} {% block header %}
{% plugin_buttons object %} {% if perms.tenancy.add_tenant %} {% clone_button object %} {% endif %} {% if perms.tenancy.change_tenant %} {% edit_button object %} {% endif %} {% if perms.tenancy.delete_tenant %} {% delete_button object %} {% endif %}

{% block title %}{{ object }}{% endblock %}

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