{% extends 'layout.html' %} {% set page_action = 'log' %} {% set title = _('View Diff') %} {% block contents %} {% macro view_link(val) %} “{{ page.title }}” {% endmacro %} {% macro old_link(val) %} {{ old_revision.time }} {% endmacro %} {% macro new_link(val) %} {{ new_revision.time }} {% endmacro %} {% if not error %}
{{ _('Below you can see the differences between the revision ' 'from :old_link:`old` and the revision from :new_link:`new` ' 'in unified diff format.', new_link=new_link, old_link=old_link)|safe }}
{{ diff|join('') }}{% else %}
{{ error }}
{% endif %} {% endblock %}