{% extends 'generic/object.html' %} {% load helpers %} {% block content %}
SCION Link Assignment
{% if object.description %} {% endif %}
ISD-AS {{ object.isd_as }}
Core Node {{ object.core }}
Interface ID {{ object.interface_id }}
Relationship {% if object.relationship == 'CORE' %} Core {% elif object.relationship == 'CHILD' %} Child {% elif object.relationship == 'PARENT' %} Parent {% else %} {{ object.get_relationship_display }} {% endif %}
Status {% if object.status == 'ACTIVE' %} Active {% elif object.status == 'RESERVED' %} Reserved {% elif object.status == 'PLANNED' %} Planned {% else %} {{ object.get_status_display }} {% endif %}
Peer Name {{ object.peer_name }}
Peer {{ object.peer }}
Local Underlay {% if object.local_underlay %}{{ object.local_underlay }}{% else %}{% endif %}
Peer Underlay {% if object.peer_underlay %}{{ object.peer_underlay }}{% else %}{% endif %}
Ticket {% if object.ticket %} {% with url=object.get_ticket_url %} {% if url %} {{ object.ticket }} {% else %} {{ object.ticket }} {% endif %} {% endwith %} {% else %} Not specified {% endif %}
Description {{ object.description|linebreaksbr }}
{% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %}
Related Information
{% if object.isd_as.appliances %} {% endif %}
Organization {% if object.isd_as.organization %} {{ object.isd_as.organization }} {% else %} — {% endif %}
ISD-AS {{ object.isd_as.isd_as }}
Available Appliances {% for appliance in object.isd_as.appliances %} {{ appliance }} {% endfor %}
{% endblock %}