{% load aristotle_tags util_tags %} {% load i18n %} {% if page.has_other_pages %} Showing {{ page.start_index }} - {{ page.end_index }} of {{ page.paginator.count }} results. {% else %} Showing {{ page.paginator.count }} results. {% endif %} {% for revision in page %} {% with versions=revision.version_set.all|unique_recent %} {% if versions|length > 0 %} {# #} {% endif %} {% endwith %} {% endfor %}
{% trans "Comment" %} {% trans "Updated" %} {% trans "Items" %}
{% firstof revision.comment _('No version comment made') %} {% if versions|length == 1 %} {% with item=revision.version_set.first %} {{ item }} {% endwith %} {% else %}
    {% for item in versions %} {% if item.object.get_absolute_url != None %}
  • {{ item }}
  • {% else %} {# If there is no URL for the object #}
  • {{ item }}
  • {% endif %} {% endfor %}
{% endif %}
{% include "aristotle_mdr/helpers/paginator.html" with page=page %}