{% extends "base.html" %} {% load i18n plmapp_tags %} {% load humanize %} {% block css %} {% endblock %} {% block extrahead %} {% endblock %} {% block content %}
{%if timeline%}
{{ form_object.as_p }} {% else %}
{% endif %} {{ form_date.as_p }} {%trans "*: Required fields" %}


{% if date_before%} {%trans "← Previous Period" %} {% endif %} {{date_end_period}} - {{date_begin_period}} {% if date_after %}{% trans "Next Period →" %} {% endif %} {% if object_history%} {% regroup object_history by get_day_as_int as histories %} {% for group in histories %}

{{ group.list.0.date|naturalday|capfirst}}

{% for histo in group.list %}
{{histo.date|date:"G:i"}} {{histo.user}} {{ histo.action }} {% if show_identifiers %} {{ histo.title }} : {% elif show_revisions %} {%if obj.revision == histo.plmobject.revision%} {{ histo.plmobject.revision }} {% else %} {{histo.plmobject.revision}} {% endif %} {% endif %}
{{ histo.details|linebreaksbr }}
{% endfor %}
{% endfor %} {% else %}

{{ date_begin_period|naturalday|capfirst}} - {{ date_end_period|naturalday|capfirst}}

{% trans "There are no event to display for this period" %}

{% endif %}
{% if date_before%} {%trans "← Previous Period" %} {% endif %} {{date_begin_period}} - {{date_end_period}} {% if date_after %}{%trans "Next Period →"%} {% endif %}
{% endblock %}