{{ route.view }}
{% if route.app_name %}[app_name="{{ route.app_name }}"]{% endif %}
{% if route.name %}
[name="{{ route.name }}"]
{% if route.args_count == 0 and route.url_reversed %}
Link: {{ route.url_reversed }}
{% endif %}
{% endif %}
{% if route.args_count > 0 %}
{% 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 %}