{% extends 'wiki/base.html' %} {% load i18n %} {% load custom_date %} {% block title %} {% trans "History for" %} {{ article.title }} - {{ block.super }} {% endblock %} {% block content %}

{{ article.title }}

{% trans "Article History" %}

{% for change in changes %} {% endfor %}
{% trans "At" %} {% trans "User" %} {% trans "Comment" %} {% trans "Revert" %}
{{ change.modified|custom_date:user }} {% if change.is_anonymous_change %} {{ change.editor_ip }} {% else %} {{ change.editor }} {% endif %} {% if change.comment %}'{{ change.comment}}' {% endif %} {% if forloop.first %} {% trans "Current revision" %} {% else %} {% endif %}
Atom Feed {% endblock %}