{% extends "layout.html" %} {% block title %}Snapshots - chat{% endblock %} {% block content %} {% if preview %}

Preview: {{ preview.snapshot_id }}

kind
{{ preview.kind }}
filename
{{ preview.filename }}
file size (bytes)
{{ preview.file_size_bytes }}
snapshot last_event_id
{{ preview.last_event_id }}
current event_log max id
{{ preview.current_event_log_max_id }}
events since snapshot
{{ preview.event_delta }}
events stored in snapshot
{{ preview.event_log_rows_in_snapshot }}
{% endif %} {% if snapshots %} {% for snap in snapshots %} {% endfor %}
ID Kind Created (UTC) Size (bytes) last_event_id Actions
{{ snap.snapshot_id }} {{ snap.kind }} {{ snap.created_at }} {{ snap.file_size_bytes }} {{ snap.last_event_id if snap.last_event_id is not none else '?' }} Preview
Restore
{% else %}

No snapshots yet. Use "Take snapshot now" to create one.

{% endif %} {% endblock %}