{% extends "cmsplugin_diff/base.html" %} {% load i18n humanize %} {% block content_title %} {% with next=object.next previous=object.previous %}

{% if previous.pk %}«{% else %}|{% endif %} {{ title }} {% if next.pk %}»{% else %}|{% endif %}

{% endwith %} {% endblock %} {% block content %}
{% trans "Page:" %}
{{ object.page }}
{% trans "Date:" %}
{{ object.date }}
{% trans "Age:" %}
{{ object.date|naturaltime }}
{% trans "Published By:" %}
{{ object.user }}
{% trans "Published Language:" %}
{{ object.get_language_display }}
{% for editing in object.editings.all %}
{% with next=editing.next previous=editing.previous %}

{% if previous.pk %}«{% else %}|{% endif %} {{ editing }} {% if next.pk %}»{% else %}|{% endif %}

{% endwith %} {% include "cmsplugin_diff/editing_item.html" %} {% endfor %} {% endblock %}