{% extends 'base.html' %} {% load static %} {% block title %}Execute Report - Analytics{% endblock %} {% block css %} {% endblock %} {% block content %}

Execute Report

Report Execution

{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
{% csrf_token %}
Start Date
End Date
Optional parameters in JSON format
Cancel
{% if execution_result %}

Execution Results

Status:
{% if execution_result.success %} Completed {% else %} Failed {% endif %}
Execution Time:
{{ execution_result.execution_time }}s
Records:
{{ execution_result.record_count|default:"N/A" }}
{% if execution_result.download_url %} {% endif %} {% if execution_result.preview_data %}
Preview Data:
{% for header in execution_result.headers %} {% endfor %} {% for row in execution_result.preview_data %} {% for cell in row %} {% endfor %} {% endfor %}
{{ header }}
{{ cell }}
{% endif %}
{% endif %}
{% endblock %} {% block js %} {% endblock %}