{% extends 'base.html' %} {% load buttons %} {% load custom_links %} {% load helpers %} {% load plugins %} {% load static %} {% load tz %} {% block header %}
{% plugin_buttons site %} {% if show_graphs %} {% endif %} {% if perms.dcim.add_site %} {% clone_button site %} {% endif %} {% if perms.dcim.change_site %} {% edit_button site %} {% endif %} {% if perms.dcim.delete_site %} {% delete_button 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.unrestricted %} {{ 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|render_markdown }} {% else %} None {% endif %}
{% plugin_left_page site %}
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 %}
{% plugin_right_page site %}
{% include 'inc/modal.html' with name='graphs' title='Graphs' %}
{% plugin_full_width_page site %}
{% endblock %} {% block javascript %} {% endblock %}