{% extends 'wiki/base.html' %} {% load i18n %} {% block content %}

{% trans "Recent Changes" %}

{% for change in changes %} {% endfor %}
{% trans "Action" %} {% trans "Title" %} {% trans "Date" %} {% trans "Editor" %} {% trans "Comment" %}
{% if change.old_title %} Modified {% else %} Added {% endif %} {{ change.article.title }} {{ change.modified|date:"H:i" }} {% if change.editor %} {{ change.editor }} {% else %} {{ change.editor_ip }} {% endif %} {{ change.comment }}
{% endblock %}