{% extends "base.html" %} {% set active_page = 'jobs' %} {% block title %}Backup Jobs — vSphere Backup Manager{% endblock %} {% block head %} {% endblock %} {% block content %}
Backup Jobs
All scheduled and completed backup jobs
Create Job
{{ jobs|length }}
Total
{{ jobs|selectattr('status','equalto','running')|list|length }}
Running
{{ jobs|selectattr('status','equalto','finished')|list|length }}
Finished
{{ jobs|selectattr('status','equalto','queued')|list|length }}
Queued
{% set fcnt = namespace(n=0) %}{% for j in jobs %}{% if j.status.startswith('failed') %}{% set fcnt.n = fcnt.n + 1 %}{% endif %}{% endfor %}{{ fcnt.n }}
Failed
{{ scheduled_count }}
Scheduled
{% if jobs %}
{% for job in jobs %} {% endfor %}
Job VM Status Schedule Started Actions
{{ job.label or ('Job #' + job.id[:8]) }}
{{ job.id[:12] }}…
{{ job.vm_name }} {% if job.status == 'running' %} Running {% elif job.status == 'finished' %} Finished {% elif job.status == 'queued' %} Queued {% elif job.status.startswith('failed') %} Failed {% else %} {{ job.status }} {% endif %} {% if job.schedule_type and job.schedule_type != 'now' %} 📅︎ {{ job.schedule_type|capitalize }} {% if job.schedule_id %} Active {% else %} Cancelled {% endif %} {% else %} ⚡︎ One-time {% endif %}
{% if job.retention_type == 'keep_count' %} Keep: {{ job.retention_value }} backups {% elif job.retention_type == 'keep_days' %} Keep: {{ job.retention_value }} days {% else %} Keep: All {% endif %}
{{ job.started_fmt }}
👁︎View {% if job.status != 'running' and job.status != 'queued' %}
{% endif %} {% if job.status == 'running' or job.status == 'queued' %}
{% endif %} {% if job.schedule_id %}
{% elif job.schedule_type and job.schedule_type != 'now' %}
{% endif %}
{% else %}

No backup jobs yet.

Create your first job
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}