{# vim: set ts=2 et sts=2 sw=2: #} {% extends "wiki/base.html" %} {% from "wiki/includes/sidebar_modules.html" import document_tabs %} {% from "wiki/includes/document_macros.html" import revision_diff, document_watch with context %} {% set title = _('Compare Revisions | {document}')|f(document=document.title) %} {% set crumbs = [(url('wiki.category', document.category), document.get_category_display()), (document.get_absolute_url(), document.title), (None, _('Compare Revisions'))] %} {% set classes = 'compare' %} {% block content %}

{{ _('Compare Revisions') }}

{{ document.title }}

{{ revision_diff(revision_from, revision_to) }}

{{ _('Back to History') }}

{% endblock %} {% block side_top %} {{ document_tabs(document, document.parent, user, 'history', settings) }} {% if not waffle.flag('editing-tools-show-hide') %} {{ document_watch(document, user) }} {% endif %} {% endblock %}