{% extends 'layout.html' %} {% from '_helpers.html' import render_user %} {% set page_title = _('Revisions') %} {% block body %}

{{ page_title }}

{%- trans post='%s' % (url_for(post), post.topic.title|e if post.is_question else '#' ~ post.id), author=render_user(post.author) %}

Here you can see all revisions for {{ post }} by {{ author }}.

Added information is marked green, deleted text is struck out and red and changed formatting is marked with a yellow background. To see the full text of a revision click on the ellipsis (“…”) below and after each paragraph containing marks. {%- endtrans %}

{%- for revision in revisions %}

{% trans date=revision.date|datetimeformat, user=render_user(revision.editor) -%} Revision created {{ date }} by {{ user }}. {%- endtrans %}

{{ _('Edit') }} {%- if not revision.latest %} | {{ _('Restore') }} {%- endif %}

{{ revision.diff }}
{%- endfor %}
{% endblock %}