{% extends 'base.html' %} {% load buttons %} {% load static %} {% load custom_links %} {% load helpers %} {% load plugins %} {% block title %}{{ object }}{% endblock %} {% block header %}
{% plugin_buttons object %} {% if perms.tenancy.add_tenantgroup %} {% clone_button object %} {% endif %} {% if perms.tenancy.change_tenantgroup %} {% edit_button object %} {% endif %} {% if perms.tenancy.delete_tenantgroup %} {% delete_button object %} {% endif %}

{{ object }}

{% include 'inc/created_updated.html' %}
{% custom_links object %}
{% endblock %} {% block content %}
Tenant Group
Description {{ object.description|placeholder }}
Parent {{ object.parent|placeholder }}
Tenants {{ tenant_table.rows|length }}
{% include 'inc/custom_fields_panel.html' %} {% include 'inc/relationships_panel.html' %} {% plugin_left_page object %}
Tenants
{% include 'inc/table.html' with table=tenant_table %} {% if perms.teanancy.add_tenant %} {% endif %}
{% include 'inc/paginator.html' with paginator=tenant_table.paginator page=tenant_table.page %} {% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}