{% extends "base.html" %} {% load static %} {% block title %}Batch Processing & Scheduling{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Total Jobs
Completed Jobs
Failed Jobs
Active Schedules
| Job ID | Type | Status | Progress | Created | Duration | Actions |
|---|---|---|---|---|---|---|
{{ job.id|slice:":8" }}...
|
{{ job.job_type|title }} | {{ job.status }} |
|
{{ 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. | ||||||
| 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. | ||||||