{% extends "base.html" %} {% load i18n plmapp_tags %} {% load humanize %} {% block css %} {% endblock %} {% block extrahead %} {% endblock %} {% block content %} {% regroup object_history.object_list by get_day as histories %} {% for group in histories %}

{{ group.grouper|naturalday|capfirst}}

{% for histo in group.list %}
{{histo.date|date:"G:i"}} {% if show_identifiers %} {{ histo.plmobject.type }} {{ histo.plmobject.reference }} {{ histo.plmobject.revision }} : {% endif %} {% if show_revisions %} {{ histo.plmobject.revision }} {% endif %} {{histo.action}} {{histo.user}}
{{ histo.details|linebreaks }}
{% endfor %}
{% endfor %} {% with object_history as objects %} {% include "snippets/pagination.html" %} {% endwith %} {% endblock %}