{% extends 'arnold/base.html' %}
{% block content %}
{% include 'arnold/back.html' %}
{% if error %}
{{ error }}
{% endif %}
{% comment %} Display info for this identity {% endcomment %}
{% comment %}Display list of events regarding this identity{% endcomment %}
{% with identity.event_set.all as events %}
History
Eventtime |
Action |
Reason |
Comment |
User |
{% for event in events %}
{{ event.event_time|date:"Y-m-d H:i:s" }} |
{{ event.action }} |
{{ event.justification }} |
{{ event.comment }} |
{{ event.executor }} |
{% endfor %}
{{ events|length }} entr{{ events|pluralize:'y,ies' }} in history |
{% endwith %}
{% endblock %}