Report Executions
Monitor and manage report execution history and status
Filters
Report Executions
{% if executions %}
{% if is_paginated %}
{% endif %}
{% else %}
{% endif %}
| Report Name {% if request.GET.sort == 'report__name' %} {% elif request.GET.sort == '-report__name' %} {% else %} {% endif %} | Started At {% if request.GET.sort == 'started_at' %} {% elif request.GET.sort == '-started_at' %} {% else %} {% endif %} | Duration | Status | Executed By | Records | File Size | Actions |
|---|---|---|---|---|---|---|---|
|
{{ execution.report.name }}
{% if execution.report.description %}
{{ execution.report.description|truncatechars:50 }} {% endif %} |
{{ execution.started_at|date:"M d, Y" }}
{{ execution.started_at|time:"H:i:s" }} |
{% if execution.duration %}
{{ execution.duration }}
{% if execution.status == 'running' %}
{% else %}
N/A
{% endif %}
Running... {% endif %} |
{% if execution.status == 'completed' %} Completed {% elif execution.status == 'running' %} Running {% elif execution.status == 'failed' %} Failed {% elif execution.status == 'cancelled' %} Cancelled {% else %} Pending {% endif %} | {% if execution.record_count %} {{ execution.record_count|floatformat:0 }} {% else %} N/A {% endif %} | {% if execution.file_size %} {{ execution.file_size|filesizeformat }} {% else %} N/A {% endif %} |
Showing {{ page_obj.start_index }} to {{ page_obj.end_index }} of {{ paginator.count }} entries
No Report Executions Found
No report executions match your current filters. Try adjusting your search criteria or execute a new report.
Execute Report