{% extends "wiki/base.html" %} {% from "wiki/includes/sidebar_modules.html" import document_tools with context %} {% from "wiki/includes/document_macros.html" import revision_diff with context %} {% set title = _('Compare Revisions | {document}')|f(document=document.title) %} {% set crumbs = [(document.get_absolute_url(), document.title), (None, _('Compare Revisions'))] %} {% set classes = 'compare' %} {% set scripts = ('wiki', 'wiki.diff') %} {% set meta = [('robots', 'noindex, nofollow')] %} {% set ga_content_group = "kb-cms" %} {% block content %}

{{ _('Compare Revisions') }}

{{ document.title }}

{{ revision_diff(revision_from, revision_to) }}

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

{% endblock %} {% block side_top %} {{ document_tools(document, document.parent, user, 'history', settings) }} {% endblock %}