{% extends "base.html" %} {% load url from future %} {% block title %}Report list{% endblock %} {% block content %} {% include "filter_form.html" %}
{% for report in reports.object_list %} {% endfor %}
# Report Component Status Type Last Change Created
{{report.rank}} {{report.id}} {{report.component}} {{report.status}} {{report.type}} {{report.last_change|date:"Y-m-d"}} {{report.created|date:"Y-m-d"}}
{% with reports as paginated %} {% include "paginator.html" %} {% endwith %} {% endblock %}