{% extends "base.html" %} {% load static %} {% block title %}Batch Processing & Scheduling{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Batch Processing & Scheduling

{{ job_stats.total_jobs }}

Total Jobs

{{ job_stats.completed_jobs }}

Completed Jobs

{{ job_stats.failed_jobs }}

Failed Jobs

{{ job_stats.active_schedules }}

Active Schedules

Recent Jobs
{% for job in recent_jobs %} {% empty %} {% endfor %}
Job ID Type Status Progress Created Duration Actions
{{ job.id|slice:":8" }}... {{ job.job_type|title }} {{ job.status }}
{{ job.progress_percentage|floatformat:1 }}%
{{ job.processed_items }}/{{ job.total_items }} items
{{ job.created_at|date:"M d, Y H:i" }} {% if job.duration %} {{ job.duration }} {% else %} - {% endif %}
{% if job.status == 'completed' %} {% endif %} {% if job.status in 'pending,processing' %} {% endif %}
No recent jobs found. Create your first batch job to get started.
📅 Scheduled Reports
{% for report in scheduled_reports %} {% empty %} {% endfor %}
Name Frequency Next Run Last Run Run Count Status Actions
{{ report.name }} {% if report.description %}
{{ report.description }} {% endif %}
{{ report.frequency|title }}
{{ report.time_of_day }}
{% if report.next_run %} {{ report.next_run|date:"M d, Y H:i" }} {% else %} - {% endif %} {% if report.last_run %} {{ report.last_run|date:"M d, Y H:i" }} {% else %} Never {% endif %} {{ report.run_count }} {% if report.is_active %} Active {% else %} Inactive {% endif %}
No scheduled reports found. Create your first scheduled report to automate report generation.
{% endblock %} {% block extra_js %} {% endblock %}