{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load tz %} {% block breadcrumbs %} {% if object.region %} {% for region in object.region.get_ancestors %} {% endfor %} {% endif %} {% endblock %} {% block content %}
Site
{{ object.get_status_display }}
Region {% if object.region %} {% for region in object.region.get_ancestors %} {{ region }} / {% endfor %} {{ object.region }} {% else %} None {% endif %}
Tenant {% if object.tenant %} {% if object.tenant.group %} {{ object.tenant.group }} / {% endif %} {{ object.tenant }} {% else %} None {% endif %}
Facility {{ object.facility|placeholder }}
AS Number {{ object.asn|placeholder }}
Time Zone {% if object.time_zone %} {{ object.time_zone }} (UTC {{ object.time_zone|tzoffset }})
Site time: {% timezone object.time_zone %}{% now "SHORT_DATETIME_FORMAT" %}{% endtimezone %} {% else %} {% endif %}
Description {{ object.description|placeholder }}
Contact Info
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 %}
Contact Name {{ object.contact_name|placeholder }}
Contact Phone {% if object.contact_phone %} {{ object.contact_phone }} {% else %} {% endif %}
Contact E-Mail {% if object.contact_email %} {{ object.contact_email }} {% else %} {% endif %}
{% include 'inc/custom_fields_panel.html' %} {% include 'extras/inc/tags_panel.html' with tags=object.tags.all url='dcim:site_list' %}
Comments
{% if object.comments %} {{ object.comments|render_markdown }} {% else %} None {% endif %}
{% plugin_left_page object %}
Locations
{% for location in locations %} {% endfor %}
{{ location }} {{ location.rack_count }} {{ location.device_count }}
Images
{% include 'inc/image_attachments.html' with images=object.images.all %}
{% if perms.extras.add_imageattachment %} {% endif %}
{% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}