{% load url from future %} {% block content %}
 
{% regroup reports by group as report_list %} {% for group in report_list %}

{{ group.grouper }}

{% for report in group.list %} {% endfor %}
{{ report }} {{ report.description }}
{% endfor %} {% endblock %}