blob: e6ce31c25dbf63a20f720161c4b49e82956c7ac4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{% load i18n link_to_window %}
{% if item.history_creator.ishtaruser.person %}
<li><label>{% trans "Creation" context "Sheet" %}</label>
<span class='value'>
{{item.history_creator.ishtaruser.person}}
{{item.history_creator.ishtaruser.person|link_to_window}} <br/>
<small><em>{{item.history_creation_date|date:"DATETIME_FORMAT"}}</em></small>
</span>
</li>
{% endif %}
{% if item.history_creation_date != item.last_edition_date %}
<li><label>{% trans "Modification" context "Sheet" %}</label>
<span class='value'>
{{item.history_modifier.ishtaruser.person}}
{{item.history_modifier.ishtaruser.person|link_to_window}} <br/>
<small><em>{% firstof item.history_date|date:"DATETIME_FORMAT" item.history.all.0.history_date|date:"DATETIME_FORMAT" %}</em></small>
</span>
</li>
{% endif %}
|