{% extends "base.html" %} {% load i18n %} {% load humanize %} {% load translations %} {% block breadcrumbs %}
  • {{ object }}
  • {% trans "Backups" %}
  • {% endblock %} {% block content %} {% for backup in backups %} {% empty %} {% endfor %}
    {{ backup.name }} {{ backup.size|intcomma }} kB {{ backup.timestamp|naturaltime }}
    {% trans "There are currently no backups." %}

    {% trans "Trigger backup" %}

    {% csrf_token %}

    {% trans "Backup will be generated in the background." %} {% blocktrans count count=keep_days %}Backups are removed after {{ keep_days }} day.{% plural %}Backups are removed after {{ keep_days }} days.{% endblocktrans %}

    {% endblock %}