{% extends 'base.html' %} {% load crispy_forms_tags %} {% block content %}

{{ backup.router.name }}

{% comment %} {% endcomment %}
    {% comment %}
  • {{ backup }}
  • {% endcomment %}
  • Backup ID {{ backup.id }}
  • {% if not backup.success and not backup.error %}
  • Backup Status {% if backup.success %} {% elif backup.error %} {% elif backup.backup_pending_retrieval %} {% else %} {% endif %}
  • Host Monitoring {% if backup.router.monitoring %} {% if backup.router.routerstatus.status_online %} {% else %} Host offline. Waiting for it to come online {% endif %} {% else %} Not enabled {% endif %}
  • Retry Count 0 %}class="text-danger"{% endif %}> {{ backup.retry_count }}
  • Next Retry {% if backup.next_retry %} {% if backup.next_retry > now %} (anticipate) {{ backup.next_retry }} {% else %} {{ backup.next_retry }} {% endif %} {% else %} queued {% endif %}
  • Cron last run {% if webadmin_settings.cron_last_run %} {% if webadmin_settings.cron_last_run < 5_minutes_ago %} {{ webadmin_settings.cron_last_run }} {% else %} {{ webadmin_settings.cron_last_run }} {% endif %} {% endif %}
  • Error message {{ backup.error_message|default_if_none:"" }}
  • {% endif %}
  • Schedule Type {{ backup.get_schedule_type_display }}
  • Task Created {{ backup.created }}
  • Schedule Time {{ backup.schedule_time|default_if_none:"" }}
  • Finish Time {{ backup.finish_time|default_if_none:"" }}
  • Queue length {{ backup.queue_length }}s
  • Backup hash {{ backup.backup_text_hash|slice:":16" }}...
  • Download {% if backup.backup_text %} Text {% if backup.backup_binary %} - {% endif %} {% endif %} {% if backup.backup_binary %} Binary {% endif %}
  • Delete backup

Latest Configuration changes

{% for compare_backup in backup_list %} {% endfor %}
ID Date Compare
{{ compare_backup.id }} {% if compare_backup.finish_time %} {{ compare_backup.finish_time }} {% else %} {{ compare_backup.created }} {% endif %} Compare

Text Backup

{{ backup.backup_text|default_if_none:"" }}
{% endblock %} {% block custom_page_scripts %} {% endblock %}