{% extends "wiki/base.html" %} {% load account_tags %} {% load timezone_filters %} {% load i18n %} {% load wiki_tags %} {% load group_tags %} {% block head_title %}Wiki for {{ group.name }} - {{ article.title }} {% endblock %} {% block body %} {% wiki_title group %}

{% trans "History for article" %} {{ article.title }}

{% if changes %}
{% csrf_token %} {% for change in changes %} {% endfor %}
{% trans "Date" %} {% trans "Editor" %} {% trans "Comment" %} {% trans "Revert to..." %}
{{ change.modified|localtime:account.timezone|date:_("DATETIME_FORMAT") }} {% if change.is_anonymous_change %} {{ change.editor_ip }} {% else %} {% user_display change.editor %} {% endif %} {% if change.comment %}'{{ change.comment }}' {% endif %} {% if forloop.first %} {% trans "Current Revision" %} {% else %} {% endif %}
{% else %}

{% trans "No changes in this article" %}

{% endif %} {% endblock %}