{% if theme() and file_exists('app/templates/themes/' + theme() + '/base.html') %} {% extends 'themes/' + theme() + '/base.html' %} {% else %} {% extends "base.html" %} {% endif %} {% from 'bootstrap/form.html' import render_field %} {% block app_content %}
{% include "community/_community_moderation_nav.html" %}

{{ _('Revisions of %(title)s', title=page.title) }}

{% if revisions -%} {% for revision in revisions %} {% endfor %}
{{ _('Author') }} {{ _('When') }}
{{ render_username(revision.author) }} {{ arrow.get(revision.edited_at).humanize(locale=locale) }} {% if page.can_edit(current_user, community) %} {% endif %}
{% endif -%}
{% endblock %}