{% extends "admin/base_site.html" %} {% load i18n %} {% block javascripts %} {{ block.super }} {% endblock %} {% block bodyclass %}grp-docutils{% endblock %} {% block content-class %}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block title %}Views{% endblock %} {% block content %}

View documentation

{% regroup views|dictsort:'namespace' by namespace as views_by_ns %}
{% for ns_views in views_by_ns %}

{% if ns_views.grouper %} Views by URL on {{ ns_views.grouper }} {% else %} {% blocktrans %}Views by empty namespace{% endblocktrans %} {% endif %}

{% for view in ns_views.list|dictsort:"url" %} {% ifchanged %}

{{ view.url }}

View function: {{ view.full_name }}

{% if view.title %}

{{ view.title }}

{% endif %}
{% endifchanged %} {% endfor %}
{% endfor %}
{% endblock %}