{% extends "base.html" %} {% load static %} {% block title %}{% if object %}Edit Report{% else %}Create Report{% endif %} - Analytics{% endblock %} {% block css %} {% endblock %} {% block content %}

{% if object %}Edit Report{% else %}Create New Report{% endif %} {% if object %}{{ object.name }}{% else %}Analytics Report{% endif %}

{% csrf_token %}

Basic Information

{{ form.name }} {% if form.name.errors %}
{{ form.name.errors.0 }}
{% endif %}
{{ form.status }} {% if form.status.errors %}
{{ form.status.errors.0 }}
{% endif %}
{{ form.description }} {% if form.description.errors %}
{{ form.description.errors.0 }}
{% endif %}
{{ form.category }} {% if form.category.errors %}
{{ form.category.errors.0 }}
{% endif %}
{{ form.type }} {% if form.type.errors %}
{{ form.type.errors.0 }}
{% endif %}
{{ form.output_formats }} {% if form.output_formats.errors %}
{{ form.output_formats.errors.0 }}
{% endif %}
Select one or more output formats for the report

Query Configuration

{% if form.sql_query.errors %}
{{ form.sql_query.errors.0 }}
{% endif %}
Write the SQL query that will generate the report data

Advanced Configuration

{% if form.configuration.errors %}
{{ form.configuration.errors.0 }}
{% endif %}
Additional configuration options in JSON format
{{ form.timeout }} {% if form.timeout.errors %}
{{ form.timeout.errors.0 }}
{% endif %}
{{ form.max_records }} {% if form.max_records.errors %}
{{ form.max_records.errors.0 }}
{% endif %}
{{ form.email_on_completion }}
{{ form.email_on_failure }}

Form Actions

{% if object %} {% else %} {% endif %} Cancel {% if object %}
Delete Report {% endif %}

Quick Templates

{% if object %}

Report Information

Created: {{ object.created_at|date:"M d, Y" }}
Last Modified: {{ object.updated_at|date:"M d, Y H:i" }}
Executions: {{ object.execution_count }}
Success Rate: {{ object.success_rate }}%
{% endif %}
{% endblock %} {% block js %} {% endblock %}