{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load render_table from django_tables2 %} {% block breadcrumbs %} {{ block.super }} {% for tenantgroup in object.get_ancestors %} {% endfor %} {% endblock %} {% block extra_controls %} {% if perms.tenancy.add_tenant %} Add Tenant {% endif %} {% endblock extra_controls %} {% block content %}
Tenant Group
Name {{ object.name }}
Description {{ object.description|placeholder }}
Parent {{ object.parent|linkify|placeholder }}
Tenants {{ tenants_table.rows|length }}
{% include 'inc/panels/tags.html' %} {% plugin_left_page object %}
{% include 'inc/panels/custom_fields.html' %} {% plugin_right_page object %}
Tenants
{% render_table tenants_table 'inc/table.html' %} {% include 'inc/paginator.html' with paginator=tenants_table.paginator page=tenants_table.page %}
{% plugin_full_width_page object %}
{% endblock %}