{% extends "ci/base.html" %} {% load staticfiles %} {% load bootstrap %} {% block pagetitle %}Report Generation{% endblock %} {% block content %}
Seed Control Interface

Report Generation


{% if messages %} {% endif %}
  • Request generation of the reports for the given date range. The reports will be emailed to recipients if they are specified.
  • {% csrf_token %} {{ form|bootstrap_horizontal:'col-md-3' }}

Report Tasks

{% for task in report_tasks.results %} {% endfor %}
Created Start Date End Date Email Subject Size Status
{{ task.created_at|get_date|date:"D d M Y H:i" }} {{ task.start_date }} {{ task.end_date }} {{ task.email_subject }} {% if task.file_size %}{{ task.file_size|filesizeformat }}{% endif %} {% if task.error %} {{ task.status }} {% else %} {{ task.status }} {% endif %}

{% endblock %}