{% extends 'djiki/base.html' %}
{% load i18n djiki_tags %}
{% block title %}{% trans "Latest changes" %} | {{ block.super }}{% endblock %}
{% block djiki_main %}
{% trans "Latest changes" %}
{% trans "Page" %} |
{% trans "Modification time" %} |
{% trans "Author" %} |
{% trans "Description" %} |
{% for page in latest %}
{{ 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 }} |
{% endfor %}
{% endblock %}