{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load tz %} {% block breadcrumbs %} {{ block.super }} {% if object.region %} {% for region in object.region.get_ancestors %} {% endfor %} {% elif object.group %} {% for group in object.group.get_ancestors %} {% endfor %} {% endif %} {% endblock %} {% block content %}
Site
Region {% if object.region %} {% for region in object.region.get_ancestors %} {{ region }} / {% endfor %} {{ object.region }} {% else %} None {% endif %}
Group {% if object.group %} {% for group in object.group.get_ancestors %} {{ group }} / {% endfor %} {{ object.group }} {% else %} None {% endif %}
Status {% badge object.get_status_display bg_color=object.get_status_color %}
Tenant {% if object.tenant %} {% if object.tenant.group %} {{ object.tenant.group }} / {% endif %} {{ object.tenant }} {% else %} None {% endif %}
Facility {{ object.facility|placeholder }}
Description {{ object.description|placeholder }}
Time Zone {% if object.time_zone %} {{ object.time_zone }} (UTC {{ object.time_zone|tzoffset }})
Site time: {% timezone object.time_zone %}{% annotated_now %}{% endtimezone %} {% else %} {% endif %}
Physical Address {% if object.physical_address %} {{ object.physical_address|linebreaksbr }} {% else %} {% endif %}
Shipping Address {{ object.shipping_address|linebreaksbr|placeholder }}
GPS Coordinates {% if object.latitude and object.longitude %} {{ object.latitude }}, {{ object.longitude }} {% else %} {% endif %}
{% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %} {% plugin_left_page object %}
{% include 'inc/panels/contacts.html' %}
Locations
{% if locations %} {% for location in locations %} {% endfor %}
Location Racks Devices
{% for i in location.level|as_range %}{% endfor %} {{ location }} {{ location.rack_count }} {{ location.device_count }}
{% else %} None {% endif %}
{% if perms.dcim.add_location %} {% endif %}
ASNs
{% if asns %} {% for asn in asns %} {% endfor %}
ASN Description
{{ asn }} {{ asn.description|placeholder }}
{% else %} None {% endif %}
{% if perms.ipam.add_asn %} {% endif %}
{% include 'inc/panels/image_attachments.html' %} {% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}