{% load url from future %}
{{ route.url }}
{{ route.view }} {% if route.name %} [name="{{ route.name }}"] {% if route.args_count == 0 %}
Link: {% url route.name %} {% endif %} {% endif %}
{% if route.name and route.args_count > 0 %}
{% for index, arg in route.args %} {% endfor %}
{% endif %}
{% comment %}
  • {{ route.url }} {% if route.name %}[name="{{ route.name }}"]{% endif %} {{ route.view }} {% for route in route.sub_urls %} {% include 'django_master/includes/_routes_item_list.html' %} {% endfor %}
  • {% endcomment %}