{% extends "wiki/base.html" %}
{# L10n: {n} is the revision number, {t} is the title of the document. {c} is the category. #}
{% set title = _('Revision {n} | {t} | {c}')|f(n=revision.id, t=document.title, c=document.get_category_display()) %}
{% block title %}{{ page_title(title) }}{% endblock %}
{% set meta = [('robots', 'noindex, nofollow')] %}
{% set classes = 'document' %}
{% block content %}
{{ document.title }}
{{ _('Revision Information') }}
-
{{ _('Revision slug:') }}
{{ revision.slug }}
-
{{ _('Revision title:') }}
{{ revision.title }}
-
{{ _('Revision id:') }}
{{ revision.id }}
-
{{ _('Created:') }}
{{ datetimeformat(revision.created, format='datetime') }}
-
{{ _('Creator:') }}
{{ revision.creator }}
{{ ban_link(revision.creator, request.user) }}
-
{{ _('Is current revision?') }}
{{ (revision == document.current_revision)|yesno }}
-
{{ _('Comment') }}
{{ comment }}
{#
{% if user.is_authenticated() %}
- {{ _('Edit article based on this revision') }}
{% endif %}
#}
{{ _('Revision Content') }}
{{ revision.content|wiki_bleach }}
{{ _('Revision Source') }}
{{ _('Revert to this revision') }}
{% endblock %}