{% extends "base.html" %} {% load crispy_forms_tags i18n translations %} {% block breadcrumbs %}
  • {% translate "Manage" %}
  • {% translate "Backups" %}
  • {% endblock breadcrumbs %} {% block content %} {% for service in services %}
    {% csrf_token %}

    {% documentation_icon 'admin/backup' right=True %} {% blocktranslate with url=service.repository %}Backup service: {{ url }}{% endblocktranslate %} {% if service.has_errors %} {% translate "Turned off" %} {% endif %} {% if not service.enabled %} {% translate "Failed with an error" %} {% endif %}

    {% if service.has_errors and support_status.has_expired_support and service.repository == support_status.backup_repository %}
    {% translate "The backup service was temporarily disabled due to an unpaid subscription. Enable backups by renewing your subscription." %}
    {% endif %}
    {% include "manage/snippets/backup-credentials.html" %}
    {% for log in service.last_logs %} {% endfor %}
    {% csrf_token %}
    {% endfor %} {% include "manage/snippets/activation-form.html" %}

    {% documentation_icon 'admin/backup' 'custombackup' right=True %} {% translate "Add backup service" %}

    {% crispy form %}
    {% endblock content %}