{% extends 'generic/object.html' %} {% load static %} {% block content %} {{ block.super }} {% if children %}

Split Children

{% for child in children %} {% endfor %}
Name Status From To Hops
{{ child.name }} {{ child.get_status_display }} {{ child.start_endpoint|default:"—" }} {{ child.end_endpoint|default:"—" }} {{ child.hop_count }}
{% endif %} {% if pathways %}

Route Pathways ({{ pathways|length }} hops)

{% 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 %}
{% endif %} {% endblock %} {% block javascript %} {{ block.super }} {% if route_geometry_json %} {% endif %} {% endblock %}