{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% block breadcrumbs %}
  • Location
  • {% for location in object.get_ancestors %}
  • {{ location }}
  • {% endfor %}
  • {{ object }}
  • {% endblock %} {% block content %}
    Location
    Name {{ object.name }}
    Description {{ object.description|placeholder }}
    Parent {% if object.parent %} {{ object.parent }} {% else %} {% endif %}
    Devices {{ devices_table.rows|length }}
    {% plugin_left_page object %}
    {% include 'inc/custom_fields_panel.html' %} {% plugin_right_page object %}
    Devices
    {% include 'inc/table.html' with table=devices_table %} {% if perms.dcim.add_device %} {% endif %}
    {% include 'inc/paginator.html' with paginator=devices_table.paginator page=devices_table.page %} {% plugin_full_width_page object %}
    {% endblock %}