{% extends 'base/layout.html' %} {% block title %}Apply Route: {{ route.name }}{% endblock %} {% block content %}

Apply Route to Cable

Apply {{ route.name }} ({{ pathways|length }} hops) as cable segments. This will replace any existing segments on the selected cable.

{% for pw in pathways %} {% endfor %}
# Pathway Type From To Length
{{ forloop.counter }} {{ pw }} {{ pw.get_pathway_type_display }} {{ pw.start_endpoint|default:"—" }} {{ pw.end_endpoint|default:"—" }} {% if pw.length %}{{ pw.length|floatformat:1 }}{% else %}—{% endif %}
{% csrf_token %}
{{ apply_form.cable }}
Cancel
{% endblock %}