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

    {% translate "Trigger backup" %}

    {% csrf_token %}

    {% translate "Backup will be generated in the background." %} {% blocktranslate count count=keep_days %}Backups are removed after {{ keep_days }} day.{% plural %}Backups are removed after {{ keep_days }} days.{% endblocktranslate %}

    {% endblock content %}