{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load render_table from django_tables2 %} {% block breadcrumbs %} {{ block.super }} {% for region in object.get_ancestors %} {% endfor %} {% endblock %} {% block extra_controls %} {% if perms.dcim.add_site %} Add Site {% endif %} {% endblock extra_controls %} {% block content %}
Region
Name {{ object.name }}
Description {{ object.description|placeholder }}
Parent {{ object.parent|linkify|placeholder }}
Sites {{ sites_table.rows|length }}
{% include 'inc/panels/tags.html' %} {% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/contacts.html' %} {% plugin_left_page object %}
Child Regions
{% render_table child_regions_table 'inc/table.html' %}
{% if perms.dcim.add_region %} {% endif %}
{% plugin_right_page object %}
Sites
{% render_table sites_table 'inc/table.html' %} {% include 'inc/paginator.html' with paginator=sites_table.paginator page=sites_table.page %}
{% plugin_full_width_page object %}
{% endblock %}