{% load url from future %}
{{ route.url }}
{{ route.view }} {% if route.name %} [name="{{ route.name }}"] {% if route.args_count == 0 %}
Link: {{ route.url_reversed }} {% endif %} {% endif %}
{% if route.name and route.args_count > 0 %}
{% for index, arg in route.args %} {% endfor %}
{% endif %}
{% with template_name='djangomaster/includes/_routes_item_list.html' %} {% for subroute in route.sub_urls %} {% include template_name with route=subroute only %} {% endfor %} {% endwith %}