{% load helpers %} {% load i18n %} {% if terminations.0 %} {% if terminations.0.device %} {# Device component #} {% elif terminations.0.power_panel %} {# Power feed #} {% elif terminations.0.circuit %} {# Circuit termination #} {% endif %}
{% trans "Site" %} {{ terminations.0.device.site|linkify }}
{% trans "Location" %} {{ terminations.0.device.location|linkify|placeholder }}
{% trans "Rack" %} {{ terminations.0.device.rack|linkify|placeholder }}
{{ terminations.0|meta:"verbose_name"|capfirst }} {% for term in terminations %} {{term.device|linkify}} {{ term|linkify }} {% if not forloop.last %}
{% endif %} {% endfor %}
{% trans "Site" %} {{ terminations.0.power_panel.site|linkify }}
{% trans "Power Panel" %} {{ terminations.0.power_panel|linkify }}
{{ terminations.0|meta:"verbose_name"|capfirst }} {% for term in terminations %} {{ term|linkify }}{% if not forloop.last %},{% endif %} {% endfor %}
{% trans "Provider" %} {{ terminations.0.circuit.provider|linkify }}
{% trans "Circuit" %} {% for term in terminations %} {{ term.circuit|linkify }} ({{ term }}){% if not forloop.last %},{% endif %} {% endfor %}
{% else %} {% trans "No termination" %} {% endif %}