{% extends "admin/base_site.html" %} {% load admin_list sirep_tags i18n %} {% load admin_urls %} {% load static from staticfiles %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block extrahead %} {{ report_form.media }} {{ block.super }} {% endblock extrahead %} {% block bodyclass %}change-list{% endblock %} {% block breadcrumbs %} {% endblock %} {% block pretitle %}

{% trans "Generate CSV report" %}

{% url 'sirep.view_csv' slug as sirep_view_csv_url %} {% blocktrans with sirep_view_csv_url as sirep_view_csv_url and request.GET.urlencode as url_params %}

You can Generate a CSV report from current page or use the form below to customise the params.


{% endblocktrans %}
{{ report_form.non_field_errors }} {% for field in report_form %}
{{ field.errors }} {{ field.label_tag }}: {{ field }}
{% endfor %}

{% trans "Generating the CSV. Please wait." %}

{% trans "Note: Large report may take some time to generate, please be patient and don't close the browser window." %}

{% endblock pretitle %} {% block content %}
{% block object-tools %}{% endblock %}
{% block result_list %}
{% for head in report.get_headers %} {% endfor %} {% for row in report.items %} {%for val in row %} {% endfor %} {% endfor %}
{##}{{ head }}{##}
{{val}}
{% endblock %}
{% endblock %}