{% 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.dcim.add_region %} {% clone_button object %} {% endif %} {% if perms.dcim.change_region %} {% edit_button object use_pk=1 %} {% endif %} {% if perms.dcim.delete_region %} {% delete_button object use_pk=1 %} {% endif %}

{{ object }}

{% include 'inc/created_updated.html' %}
{% custom_links object %}
{% endblock %} {% block content %}
Region
Description {{ object.description|placeholder }}
Parent {{ object.parent|placeholder }}
Sites {{ sites_table.rows|length }}
{% include 'inc/custom_fields_panel.html' %} {% include 'inc/relationships_panel.html' %} {% plugin_left_page object %}
Sites
{% include 'inc/table.html' with table=sites_table %} {% if perms.dcim.add_site %} {% endif %}
{% include 'inc/paginator.html' with paginator=site_table.paginator page=site_table.page %} {% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}