{# vim: set ts=2 et sts=2 sw=2: #} {% 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 crumbs = [(url('wiki.category', document.category), document.get_category_display()), (document.get_absolute_url(), document.title), (None, _('Revision {num}')|f(num=revision.id))] %} {% 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 }}
  • {{ _('Is reviewed?') }} {{ revision.reviewed|yesno }}
  • {% if revision.reviewed %}
  • {{ _('Reviewed:') }} {{ datetimeformat(revision.reviewed, format='datetime') }}
  • {{ _('Reviewed by:') }} {{ revision.reviewer }}
  • {{ _('Is approved?') }} {{ revision.is_approved|yesno }}
  • {{ _('Is current revision?') }} {{ (revision == document.current_revision)|yesno }}
  • {% endif %} {% if user.is_authenticated() %}
  • {{ _('Edit article based on this revision') }}
  • {% endif %}
{{ _('Revision Source') }}
{{ _('Revision Content') }}
{{ revision.content_parsed|safe }}
{% endblock %} {% block side %} {% include 'wiki/includes/support_for_selectors.html' %} {% endblock %}