{% extends "base.html" %} {% set active_tab = '' %} {% block title %}{{ title }} - History{% endblock %} {% block content_class %}reading{% endblock %} {% block actions %} {% endblock %} {% block content %}
{% if not versions %}

No versions yet

Versions are automatically saved when you edit a page.

Back to Page
{% else %}
{% for v in versions %}
{{ v.date }} {{ v.size }} bytes
{% endfor %}
{% endif %}
{% endblock %}