{% extends '_base.html' %} {% load static from staticfiles %} {% load tz %} {% load helpers %} {% block content %}
{% if perms.dcim.change_facility %} Edit this facility {% endif %} {% if perms.dcim.delete_facility %} Delete this facility {% endif %}

{% block title %}{{ facility }}{% endblock %}

{% include 'inc/created_updated.html' with obj=facility %}
Facility
Tenant {% if facility.tenant %} {% if facility.tenant.group %} {{ facility.tenant.group }} {% endif %} {{ facility.tenant }} {% else %} None {% endif %}
Description {% if facility.description %} {{ facility.description }} {% else %} N/A {% endif %}
PeeringDB {% if facility.peeringdb_id %} View on PeeringDB {% else %} N/A {% endif %}
Location and contact
City {% if facility.city %} {{ facility.city }} {% else %} N/A {% endif %}
GPS coordinates {% if facility.latitude and facility.longitude %} {{ facility.latitude }}, {{ facility.longitude }} {% else %} N/A {% endif %}
Physical Address {% if facility.physical_address %} {{ facility.physical_address|linebreaksbr }} {% else %} N/A {% endif %}
Shipping Address {% if facility.shipping_address %} {{ facility.shipping_address|linebreaksbr }} {% else %} N/A {% endif %}
Contact Name {% if facility.contact_name %} {{ facility.contact_name }} {% else %} N/A {% endif %}
Contact Phone {% if facility.contact_phone %} {{ facility.contact_phone }} {% else %} N/A {% endif %}
Contact E-Mail {% if facility.contact_email %} {{ facility.contact_email }} {% else %} N/A {% endif %}
{% with facility.get_custom_fields as custom_fields %} {% include 'inc/custom_fields_panel.html' %} {% endwith %}
Comments
{% if facility.comments %} {{ facility.comments|gfm }} {% else %} None {% endif %}
{% endblock %}