{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load render_table from django_tables2 %} {% load i18n %} {% block breadcrumbs %} {{ block.super }} {% for location in object.get_ancestors %} {% endfor %} {% endblock %} {% block extra_controls %} {% if perms.dcim.add_location %} {% trans "Add Child Location" %} {% endif %} {% endblock extra_controls %} {% block content %}
{% trans "Location" %}
{% trans "Name" %} {{ object.name }}
{% trans "Description" %} {{ object.description|placeholder }}
{% trans "Site" %} {{ object.site|linkify }}
{% trans "Parent" %} {{ object.parent|linkify|placeholder }}
{% trans "Status" %} {% badge object.get_status_display bg_color=object.get_status_color %}
{% trans "Tenant" %} {% if object.tenant.group %} {{ object.tenant.group|linkify }} / {% endif %} {{ object.tenant|linkify|placeholder }}
{% include 'inc/panels/tags.html' %} {% include 'inc/panels/custom_fields.html' %} {% plugin_left_page object %}
{% include 'inc/panels/related_objects.html' %} {% include 'inc/panels/image_attachments.html' %} {% plugin_right_page object %}
{% trans "Child Locations" %}
{% if perms.dcim.add_location %} {% endif %}
Non-Racked Devices
{% if perms.dcim.add_device %} {% endif %}
{% plugin_full_width_page object %}
{% endblock %}