Report Execution Details
View detailed information about report execution
Back to List
{% if execution.status == 'completed' and execution.output_file %}
Download Report
{% endif %}
Execution Status
{% if execution.status == 'running' %}
{% elif execution.status == 'failed' %}
{% endif %}
{% if execution.status == 'completed' %}
Completed Successfully
{% elif execution.status == 'running' %}
Running
{% elif execution.status == 'failed' %}
Failed
{% elif execution.status == 'cancelled' %}
Cancelled
{% else %}
Pending
{% endif %}
{% if execution.status == 'running' %}
| Execution ID: | {{ execution.id }} |
| Started At: | {{ execution.started_at|date:"M d, Y H:i:s" }} |
| Completed At: | {{ execution.completed_at|date:"M d, Y H:i:s" }} |
| Duration: | {% if execution.duration %} {{ execution.duration }} {% elif execution.status == 'running' %} Calculating... {% else %} N/A {% endif %} |
| Executed By: | {{ execution.executed_by.get_full_name|default:execution.executed_by.username }} |
Execution Metrics
{{ execution.record_count|default:"0"|floatformat:0 }}
Records Processed
{{ execution.file_size|filesizeformat|default:"N/A" }}
Output Size
Error Details
{{ execution.error_message }}
Report Information
{{ execution.report.name }}
{% if execution.report.description %}{{ execution.report.description }}
{% endif %}| Report Type: | {{ execution.report.get_report_type_display }} |
| Category: | {{ execution.report.get_category_display }} |
| Output Format: | {{ execution.output_format|upper }} |
| Data Source: | {{ execution.report.data_source.name }} |
| Created By: | {{ execution.report.created_by.get_full_name|default:execution.report.created_by.username }} |
| Created At: | {{ execution.report.created_at|date:"M d, Y" }} |
| Last Modified: | {{ execution.report.updated_at|date:"M d, Y" }} |
| Is Active: | {% if execution.report.is_active %} Active {% else %} Inactive {% endif %} |
Execution Parameters
{% if execution.parameters %}
{% for key, value in execution.parameters.items %}
{% else %}
{{ key|title }}:
{{ value }}
{% endfor %}
No parameters specified for this execution.
{% endif %}Quick Actions
{% if execution.status == 'completed' %}
{% endif %}
Execution Timeline
Execution Started
Report execution initiated by {{ execution.executed_by.get_full_name|default:execution.executed_by.username }}
{{ execution.started_at|date:"M d, Y H:i:s" }}Data Processing
Processing data from {{ execution.report.data_source.name }}
{{ execution.started_at|date:"M d, Y H:i:s" }}Execution Completed
Report generated successfully with {{ execution.record_count|default:"0" }} records
{{ execution.completed_at|date:"M d, Y H:i:s" }}Execution Failed
{{ execution.error_message|default:"An error occurred during execution" }}
{{ execution.completed_at|date:"M d, Y H:i:s"|default:"N/A" }}Execution Cancelled
Report execution was cancelled by user
{{ execution.completed_at|date:"M d, Y H:i:s"|default:"N/A" }}