{% extends "base.html" %} {% block title %}Recent changes — Wiki{% endblock %} {% block content %} {% include "wiki/_layout.html" %}

Recent changes

Every edit, newest first.

{% if pagination.items %}
{% for r in pagination.items %} {% endfor %}
When Page Rev Who Edit summary
{{ r.created_at.strftime('%Y-%m-%d %H:%M') }} {{ r.title }} r{{ r.rev_num }} {% if r.author %}{{ r.author.username }} {% else %}{{ r.author_ip or 'anon' }}{% endif %} {{ r.edit_summary or '' }}
{% if pagination.pages > 1 %} {% endif %} {% else %}
No edits yet.
{% endif %} {% endblock %}