{% extends 'layout.html' %} {% set page_action = 'log' %} {% set title = _('Revisions for ā€œ%(revision)sā€', revision=revision.title) %} {% block contents %}

{{ _('In this list you can see all the revisions of the requested page.') }}

{% for rev in revisions %} {% endfor %}
{{ _('Date') }} {{ _('Change Note') }} {{ _('Actions') }}
{{ rev.time }} {{ rev.note or '' }} {{ _('show') }} {% if loop.index > 1 %} {{ _('revert') }} {% endif %}
{% endblock %}