{% trans %}
Please review the differences between your changes and the changes
saved since you started editing. You may save again, but try to
resolve any conflicts by hand so that the changes made since you
started are not lost.
{% endtrans %}
{{ _('Your Changes') }}
{{ _('Revision {id} by {user} on {date}')|fe(id=original_revision.id, user=original_revision.creator, date=datetimeformat(original_revision.created, format='longdatetime')) }}
{{ _('Revision {id} by {user} on {date}')|fe(id=current_revision.id, user=current_revision.creator, date=datetimeformat(current_revision.created, format='longdatetime')) }}
{% set title = request.POST['title'] %}
{% set slug = request.POST['slug'] %}
{% set keywords = request.POST['request'] %}
{% set summary = request.POST['summary'] %}
{% if title and current_revision.title and title != current_revision.title %}
{{ _('Title:') }}
{{ current_revision.title }}
{% endif %}
{% if tags and current_revision.tags and tags != current_revision.tags %}
{{ _('Tags:') }}
{{ current_revision.tags }}
{% endif %}
{% if keywords and current_revision.keywords and keywords != current_revision.keywords %}
{{ _('Keywords:') }}
{{ current_revision.keywords }}
{% endif %}
{% if summary and current_revision.summary and summary != current_revision.summary %}
{{ _('Search results summary:') }}
{{ current_revision.summary }}
{% endif %}
{% if content and current_revision.content and content != current_revision.content %}
{{ _('Content:') }}
{{ diff_table(content, current_content, current_revision.id, "Proposed") }}
{% endif %}