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