Region |
{% if object.region %}
{% for region in object.region.get_ancestors %}
{{ region }} /
{% endfor %}
{{ object.region }}
{% else %}
None
{% endif %}
|
Group |
{% if object.group %}
{% for group in object.group.get_ancestors %}
{{ group }} /
{% endfor %}
{{ object.group }}
{% else %}
None
{% endif %}
|
Status |
{{ object.get_status_display }}
|
Tenant |
{% if object.tenant %}
{% if object.tenant.group %}
{{ object.tenant.group }} /
{% endif %}
{{ object.tenant }}
{% else %}
None
{% endif %}
|
Facility |
{{ object.facility|placeholder }} |
Description |
{{ object.description|placeholder }} |
AS Number |
{{ object.asn|placeholder }} |
Time Zone |
{% if object.time_zone %}
{{ object.time_zone }} (UTC {{ object.time_zone|tzoffset }})
Site time: {% timezone object.time_zone %}{% annotated_now %}{% endtimezone %}
{% else %}
—
{% 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 %}
|
{# Legacy contact fields #}
{% with deprecation_warning="This field will be removed in a future release. Please migrate this data to contact objects." %}
{% if object.contact_name %}
Contact Name |
{% if object.contact_name %}
{% endif %}
{{ object.contact_name|placeholder }}
|
{% endif %}
{% if object.contact_phone %}
Contact Phone |
{% if object.contact_phone %}
{{ object.contact_phone }}
{% else %}
—
{% endif %}
|
{% endif %}
{% if object.contact_email %}
Contact E-Mail |
{% if object.contact_email %}
{{ object.contact_email }}
{% else %}
—
{% endif %}
|
{% endif %}
{% endwith %}