{% extends 'wiki/base.html' %} {% load humanize i18n %} {% load pagination_tags %} {% load custom_date %} {% block title %} {% trans "Recent Changes" %} - {{ block.super }} {% endblock %} {% block content %}

Wiki: {% trans "Recent Changes" %}

{% autopaginate changes %} {% paginate %}
{% for change in changes %} {% ifchanged change.modified.date %} {% if not forloop.first %}
{% endif %}

{{ change.modified|naturalday:_("MONTH_DAY_FORMAT")|title }}

{% endifchanged %} {% endfor %}
{% trans "Action" %} {% trans "Article" %} {% trans "At" %} {% trans "User" %} {% trans "Comment" %}
{% if change.old_title %} Modified {% else %} Added {% endif %} {{ change.article.title }} {{ change.modified|custom_date:user }} {{ change.editor }} {{ change.comment }}

{% paginate %}
{% endblock %}