{% extends "base.html" %} {% from "macros.html" import page_layout, empty_state, action_button, error_message %} {% block content %} {% set extra_header %}
Directory: {{ snapshot_dir }}
{% endset %} {% call page_layout("Snapshots", extra_header=extra_header) %} {% if error %} {{ error_message(error) }} {% endif %} {% if snapshots %}

{{ snapshots|length }} snapshot files found ({{ snapshots|length }} shown)

{% for snapshot in snapshots %} {% endfor %}
Filename Size Modified
{{ snapshot.filename }} {{ "%.1f" | format(snapshot.size / 1024) }} KB {{ snapshot.modified | timestamp_format }}
{% else %} {% if error %} {{ empty_state("Unable to load snapshots") }} {% else %} {{ empty_state("No snapshot files found in " + snapshot_dir) }} {% endif %} {% endif %} {% endcall %} {% endblock %}