{% extends "base.html" %} {% block title %}History — {{ page.title }}{% endblock %} {% block content %} {% include "wiki/_layout.html" %}

History — {{ page.title }}

{{ revs|length }} revision{{ '' if revs|length == 1 else 's' }}

Pick two revisions and click Compare to see the diff.
{% for r in revs %} {% endfor %}
A B Rev When Who Edit summary
r{{ r.rev_num }} {{ r.created_at.strftime('%Y-%m-%d %H:%M') }} {% if r.author %}{{ r.author.username }} {% else %}{{ r.author_ip or 'anon' }}{% endif %} {{ r.edit_summary or '' }} {% if current_user.is_authenticated and not loop.first %} {% endif %}
{% endblock %}