{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load render_table from django_tables2 %} {% block breadcrumbs %} {{ block.super }} {% for location in object.get_ancestors %} {% endfor %} {% endblock %} {% block extra_controls %} {% if perms.dcim.add_location %} Add Child Location {% endif %} {% endblock extra_controls %} {% block content %}
Location
Name {{ object.name }}
Description {{ object.description|placeholder }}
Site {{ object.site }}
Parent {% if object.parent %} {{ object.parent }} {% else %} {% endif %}
Tenant {% if object.tenant %} {% if object.tenant.group %} {{ object.tenant.group }} / {% endif %} {{ object.tenant }} {% else %} None {% endif %}
Racks {% if rack_count %} {% endif %} {{ rack_count }}
Devices {{ device_count }}
{% include 'inc/panels/tags.html' %} {% plugin_left_page object %}
{% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/contacts.html' %} {% include 'inc/panels/image_attachments.html' %} {% plugin_right_page object %}
Locations
{% render_table child_locations_table 'inc/table.html' %} {% include 'inc/paginator.html' with paginator=child_locations_table.paginator page=child_locations_table.page %}
{% plugin_full_width_page object %}
{% endblock %}