{% extends "base.html" %} {% block content %}
{% if current_view == 'v1' %} Przełącz na widok v2 {% else %} Przełącz na widok v1 {% endif %}

Router: {{ router.name }}

Host: {{ router.host }} | Port: {{ router.port }} | SSH User: {{ router.ssh_user }}

Edytuj ustawienia

Pliki z /export

{% if export_backups %}
{% for b in export_backups %} {% endfor %}
Nazwa pliku Rozmiar Data Diff Akcje
{{ b.file_path|basename }} {{ b.file_path|filesize }} {{ b.created_at }} {% if loop.index0 > 0 %} Diff {% else %} Brak nowszego {% endif %} Pobierz Podgląd

Pobierz wybrane pliki z /export jako zip

{% for b in export_backups %} {% endfor %}
Nazwa pliku Rozmiar Data
{{ b.file_path|basename }} {{ b.file_path|filesize }} {{ b.created_at }}
{% else %}

Pusto

{% endif %}


Pliki binarne (.backup)

{% if binary_backups %}
{% for b in binary_backups %} {% endfor %}
Nazwa pliku Rozmiar Data Akcje
{{ b.file_path|basename }} {{ b.file_path|filesize }} {{ b.created_at }} Pobierz

Pobierz wybrane backupy binarne jako zip

{% for b in binary_backups %} {% endfor %}
Nazwa pliku Rozmiar Data
{{ b.file_path|basename }} {{ b.file_path|filesize }} {{ b.created_at }}
{% else %}

Pusto

{% endif %} {% endblock %}