{% extends '_base.html' %} {% load static from staticfiles %} {% load helpers %} {% block title %}{{ site }}{% endblock %} {% block content %}
{% if show_graphs %} {% endif %} {% if perms.dcim.change_site %} Edit this site {% endif %} {% if perms.dcim.delete_site %} Delete this site {% endif %}

{{ site.name }}

{% include 'inc/created_updated.html' with obj=site %}
Site
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.name }} {% endif %} {{ site.tenant }} {% else %} None {% endif %}
Facility {% if site.facility %} {{ site.facility }} {% else %} N/A {% endif %}
AS Number {% if site.asn %} {{ site.asn }} {% else %} N/A {% endif %}
Contact Info
Physical Address {% if site.physical_address %} {{ site.physical_address|linebreaksbr }} {% else %} N/A {% endif %}
Shipping Address {% if site.shipping_address %} {{ site.shipping_address|linebreaksbr }} {% else %} N/A {% endif %}
Contact Name {% if site.contact_name %} {{ site.contact_name }} {% else %} N/A {% endif %}
Contact Phone {% if site.contact_phone %} {{ site.contact_phone }} {% else %} N/A {% endif %}
Contact E-Mail {% if site.contact_email %} {{ site.contact_email }} {% else %} N/A {% endif %}
{% with site.get_custom_fields as custom_fields %} {% include 'inc/custom_fields_panel.html' %} {% endwith %}
Comments
{% if site.comments %} {{ site.comments|gfm }} {% else %} None {% endif %}
Rack Groups
{% if rack_groups %} {% for rg in rack_groups %} {% endfor %}
{{ rg.name }} {{ rg.rack_count }}
{% else %}
None
{% endif %}
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/graphs_modal.html' %} {% endblock %} {% block javascript %} {% endblock %}