{% extends "layout/base.html" %} {% block title %}Orphaned Jobs Preview{% endblock %} {% block content %}

Orphaned Jobs Preview

Jobs without a valid customer link

Back to Settings
{% if orphaned_jobs %}
⚠️ Warning: Found {{ orphaned_jobs|length }} orphaned job(s). Review the list below before deleting.
Orphaned Jobs List
{% for job in orphaned_jobs %} {% endfor %}
Job Name Backup Software Backup Type Customer ID Runs Emails
{{ job.job_name }} {{ job.backup_software }} {{ job.backup_type }} {% if job.customer_id %} {{ job.customer_id }} (deleted) {% else %} NULL {% endif %} {{ job.run_count }} {{ job.mail_count }}
Total {{ orphaned_jobs|sum(attribute='run_count') }} {{ orphaned_jobs|sum(attribute='mail_count') }}
ℹ️ What will be deleted:
{% else %}
✅ No orphaned jobs found.

All jobs are properly linked to existing customers.

{% endif %} {% endblock %}