{% extends "sidebar_base.html" %} {% block graph_type %} {{ type }} {% endblock %} {% block graph_form %}
{% csrf_token %}

Show Shortest Path

{% include "icons.html" with icon="right_arrow" %}
{% if 'Path Drawn: ' not in path_error %}
{% endif %}

Edges {{ edges|length }}

{% block edge_loop %} {% endblock %}
+
{% include "icons.html" with icon="right_arrow" %}
{% for message in messages %} {% if 'edge_error' in message.tags %}
{{ message }}
{% endif %} {% if 'edge_info' in message.tags %}
{{ message }}
{% endif %} {% endfor %}

Nodes {{ nodes|length }}

{% block node_loop %} {% endblock %}
+
{% for message in messages %} {% if 'node_error' in message.tags %}
{{ message }}
{% endif %} {% if 'node_info' in message.tags %}
{{ message }}
{% endif %} {% endfor %}
{% endblock %}