{% extends '_base.html' %} {% load static from staticfiles %} {% load render_table from django_tables2 %} {% 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 }}

Site
Tenant {% if site.tenant %} {{ 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 %}
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 %}
{% with site.custom_fields as custom_fields %} {% include 'inc/custom_fields_panel.html' %} {% endwith %}
Comments
{% if site.comments %} {{ site.comments|gfm }} {% else %} None {% endif %}
{% include 'inc/created_updated.html' with obj=site %}
Rack Groups
{% if rack_groups %} {% for rg in rack_groups %} {% endfor %}
{{ rg.name }} {{ rg.rack_count }}
{% else %}
None
{% 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 %}