{% extends "report_builder/base.html" %} {% load i18n %} {% block content %}

{% trans "Select the report you wish to use. Report filters will be ignored and only your checked off items will be reported." %}

{% trans "Create and manage reports" %} {% trans "here" %}.

{% blocktrans with number_objects=number_objects model=model plur=number_objects|pluralize admin_url=admin_url %} You have selected {{ number_objects }} {{ model }} record{{ plur }}. Click here to go back. {% endblocktrans %}

{{ model|capfirst }} {% trans "Reports" %}

{% for report in object_list %} {% endfor %}
{% trans "Name" %} {% trans "Description" %} {% trans "Created" %} {% trans "Modified" %} {% trans "Select and Download" %}
{{ report.name }} {{ report.description }} {% blocktrans with created=report.created user=report.user_created %} {{ created }} by {{ user }} {% endblocktrans %} {% blocktrans with modified=report.modified user=report.user_modified %} {{ modified }} by {{ user }} {% endblocktrans %}
{% endblock %}