{% extends 'djiki/base.html' %} {% load i18n djiki_tags %} {% block title %}{% trans "Latest changes" %} | {{ block.super }}{% endblock %} {% block djiki_main %}

{% trans "Latest changes" %}

{% for page in latest %} {% endfor %}
{% trans "Page" %} {% trans "Modification time" %} {% trans "Author" %} {% trans "Description" %}
{{ page.title }} {% blocktrans with page.latest_change|timesince as timesince %}{{ timesince }} ago{% endblocktrans %} {% if page.last_author %}{{ page.last_author }} {% else %}{% trans "anonymous" %}{% endif %} {{ page.last_revision.description }}
{% endblock %}