{% extends '_base.html' %} {% load static %} {% load tz %} {% load custom_links %} {% load helpers %} {% block header %}
{% if show_graphs %} {% endif %} {% if perms.dcim.change_site %} Edit this site {% endif %} {% if perms.dcim.delete_site %} Delete this site {% endif %}

{% block title %}{{ site }}{% endblock %}

{% include 'inc/created_updated.html' with obj=site %}
{% custom_links site %}
{% endblock %} {% block content %}
Site
Status {{ site.get_status_display }}
Region {% if site.region %} {% for region in site.region.get_ancestors %} {{ region }} {% endfor %} {{ site.region }} {% else %} None {% endif %}
Tenant {% if site.tenant %} {% if site.tenant.group %} {{ site.tenant.group }} {% endif %} {{ site.tenant }} {% else %} None {% endif %}
Facility {{ site.facility|placeholder }}
AS Number {{ site.asn|placeholder }}
Time Zone {% if site.time_zone %} {{ site.time_zone }} (UTC {{ site.time_zone|tzoffset }})
Site time: {% timezone site.time_zone %}{% now "SHORT_DATETIME_FORMAT" %}{% endtimezone %} {% else %} {% endif %}
Description {{ site.description|placeholder }}
Contact Info
Physical Address {% if site.physical_address %} {{ site.physical_address|linebreaksbr }} {% else %} {% endif %}
Shipping Address {{ site.shipping_address|linebreaksbr|placeholder }}
GPS Coordinates {% if site.latitude and site.longitude %} {{ site.latitude }}, {{ site.longitude }} {% else %} {% endif %}
Contact Name {{ site.contact_name|placeholder }}
Contact Phone {% if site.contact_phone %} {{ site.contact_phone }} {% else %} {% endif %}
Contact E-Mail {% if site.contact_email %} {{ site.contact_email }} {% else %} {% endif %}
{% include 'inc/custom_fields_panel.html' with obj=site %} {% include 'extras/inc/tags_panel.html' with tags=site.tags.all url='dcim:site_list' %}
Comments
{% if site.comments %} {{ site.comments|gfm }} {% else %} None {% endif %}
Rack Groups
{% for rg in rack_groups %} {% endfor %}
{{ rg }} {{ rg.rack_count }}
All racks {{ stats.rack_count }}
Images
{% include 'inc/image_attachments.html' with images=site.images.all %} {% if perms.extras.add_imageattachment %} {% endif %}
Topology Maps
{% if topology_maps %} {% for tm in topology_maps %} {% endfor %}
{{ tm }} {{ tm.description }}
{% else %}
None
{% endif %}
{% include 'inc/modal.html' with modal_name='graphs' %} {% endblock %} {% block javascript %} {% endblock %}