{# folders/dialogs/history/modal.html Datei-genauer Sync-Verlauf für einen Ordner (T-338-SYNC). Variablen: item_id, description, entries (list[{path, action, action_label, device_label, synced_at}]), truncated #} {% extends "dialog_core.html" %} {% block dialog_id %}folder-history-modal{% endblock %} {% block dialog_width %}760{% endblock %} {% block dialog_padding %}28px 32px{% endblock %} {% block dialog_title %}Verlauf – {{ description }}{% endblock %} {% block dialog_body %} {% if not entries %}
Noch keine Synchronisation aufgezeichnet.
{% else %}
Zeit Datei Aktion Gerät
{% for e in entries %}
{{ e.synced_at }} {{ e.path }} {{ e.action_label }} {{ e.device_label }}
{% endfor %}
{% if truncated %}
Zeigt die letzten {{ entries | length }} Einträge.
{% endif %} {% endif %} {% endblock %} {% block dialog_footer %} {% endblock %}