{% extends 'main/layout.html' %} {% block title %}Post Backups — {{ request.user.username }} at Mataroa{% endblock %} {% block content %}

Post Backups

These are the latest snapshots automatically saved, across all posts. Post backups are saved automatically, every few seconds, from the post create and post edit pages.

{% for snapshot in snapshot_list %}
{{ snapshot.created_at|date:"Y-m-d H:i:s" }}: #{{ snapshot.id }} {{ snapshot.title }}
{% empty %}
(none)
{% endfor %}
{% endblock %}