{% load i18n %} {% load gui_utils %}
{% trans "Name" %} | {% trans "Disk ID" %} | {% trans "Type" %} | {% trans "Created" %} | {% trans "Status" %} | {% trans "Duration" %} | {% trans "Size" %} | {% trans "Note" %} | ||
---|---|---|---|---|---|---|---|---|---|
{{ bkp.name }} {% if node.is_online and not bkp.locked and request.dc == bkp.dc %} {% trans "Manage" %} {% endif %} | {{ disk_id }} ({{ disk_size|multiply:1048576|filesizeformat }}) | {{ bkp.get_type_display }} | {{ bkp.created|date:"SHORT_DATETIME_FORMAT" }} | {{ bkp.get_status_display }}{% if bkp.fsfreeze %} {% endif %} | {{ bkp.time|timeformat }} | {{ bkp.size|filesizeformat }} | {{ bkp.note|wordwrap:44 }} {% trans "Edit" %} | ||
{% blocktrans count len=backups_count %}Selected 0 of {{ len }} backup{% plural %}Selected 0 of {{ len }} backups{% endblocktrans %}
{% trans "Size" %}: {{ backups_size|filesizeformat }}
{% if backups and pager.paginator.num_pages > 1 %}
{% paginator %}
{% endif %}
|