{% extends 'generic/object.html' %} {% load helpers %} {% load buttons %} {% block content %}
ISD-AS
{% if object.description %} {% endif %}
ISD-AS {{ object.isd_as }}
Organization {% if object.organization %} {{ object.organization.short_name }} {% else %} — {% endif %}
Description {{ object.description|linebreaksbr }}
Appliances
{% if object.appliances %} {% for appliance in object.appliances %} {% endfor %}
Appliance Actions
{{ appliance }} Edit Remove
{% else %} None {% endif %}
{% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %}
SCION Link Assignments
{% if object.link_assignments.exists %} {% for assignment in object.link_assignments.all %} {% endfor %}
Interface Appliance Relationship Status Peer Name Peer Ticket
{{ assignment.interface_id }} {{ assignment.core }} {% if assignment.relationship == 'CORE' %} Core {% elif assignment.relationship == 'CHILD' %} Child {% elif assignment.relationship == 'PARENT' %} Parent {% else %} {{ assignment.get_relationship_display }} {% endif %} {% if assignment.status %} {% if assignment.status == 'ACTIVE' %} Active {% elif assignment.status == 'RESERVED' %} Reserved {% elif assignment.status == 'PLANNED' %} Planned {% else %} {{ assignment.status }} {% endif %} {% endif %} {{ assignment.peer_name }} {{ assignment.peer }} {% if assignment.ticket %} {% with url=assignment.get_ticket_url %} {% if url %} {{ assignment.ticket }} {% else %} {{ assignment.ticket }} {% endif %} {% endwith %} {% else %} {% endif %}
{% else %} None {% endif %}
{% endblock %}