diff --git a/netbox/templates/dcim/site.html b/netbox/templates/dcim/site.html index 308b09816..fe7f86d67 100644 --- a/netbox/templates/dcim/site.html +++ b/netbox/templates/dcim/site.html @@ -95,49 +95,48 @@ {% endif %} -
Physical Address | ++ {% if object.physical_address %} + {{ object.physical_address|linebreaksbr }} + {% else %} + — + {% endif %} + | + +
---|---|
Shipping Address | +{{ object.shipping_address|linebreaksbr|placeholder }} | +
GPS Coordinates | ++ {% if object.latitude and object.longitude %} + {{ object.latitude }}, {{ object.longitude }} + {% else %} + — + {% endif %} + | + +
Contact Name |
@@ -180,8 +179,8 @@
{% include 'inc/panels/custom_fields.html' %}
- {% include 'inc/panels/tags.html' %}
{% include 'inc/panels/comments.html' %}
+ {% include 'inc/panels/contacts.html' %}
{% plugin_left_page object %}
|