{% extends 'reports/report_base.html' %} {% load i18n %} {% block title %}{% trans 'Reports List' %}{% endblock title %} {% block body %}

{% trans 'Reports' %}

{% trans 'Create a new report' %}

{% blocktrans %}Each report is for a specific type of information (e.g. Invoices) and can have different options saved to be used in the future. All reports can be run multiple times with different date ranges, and are stored for future access.{% endblocktrans %}

{% if reports %}

{% blocktrans %}Click on a link below to access a report and either view a past date range or run a new version with a new date range.{% endblocktrans %}

{% for report in reports %} {% endfor %}
{% trans 'ID' %} {% trans 'Creator' %} {% trans 'View' %} {% trans 'Type' %} {% trans 'Options' %}
{{ report.pk }} {% if report.creator_username %}{{ report.creator_username }}{% endif %} {% trans 'Go to Report' %} {{ report.type|title }} {{ report.config_options_string }}
{% endif %} {% endblock body %}