{% trans "Previewing revision" %}:
{% include "wiki/includes/revision_info.html" %}
{% endif %}
{% if merge %}
{% trans "Previewing merge between" %}:
{% include "wiki/includes/revision_info.html" with revision=merge1 %}
{% trans "and" %}
{% include "wiki/includes/revision_info.html" with revision=merge2 %}
{% if merge1.deleted %}
{% trans "You cannot merge with a deleted revision" %}
{% endif %}
{% endif %}
{{ title }}
{% if revision and revision.deleted %}
{% trans "This revision has been deleted." %}
{% trans "Restoring to this revision will mark the article as deleted." %}
{% else %}
{% wiki_render article content %}
{% for plugin in plugins %}
{% if plugin.RenderMedia.css %}
{% addtoblock "css" %}
{% for media, url in plugin.RenderMedia.css.items %}
{% endfor %}
{% endaddtoblock %}
{% endif %}
{% if plugin.RenderMedia.js %}
{% addtoblock "js" %}
{% for url in plugin.RenderMedia.js %}
{% endfor %}
{% endaddtoblock %}
{% endif %}
{% endfor %}
{% endif %}
{% endblock %}