blob: 78126a2402df1a5f7ed4f7ab4148fa7c3e15857b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{% load i18n link_to_window %}
{% if item.history_creator.ishtaruser.person %}
<div class="col-12 col-md-6 col-lg-4 d-flex flex-wrap row">
<dt class="col-5">{% trans "Creation" context "Sheet" %}</dt>
<dd class="col-7">
{{item.history_creator.ishtaruser.person}}
{{item.history_creator.ishtaruser.person|link_to_window}} <br/>
<small class="text-muted">{{item.history_creation_date|date:"DATETIME_FORMAT"}}</small>
</dd>
</div>
{% endif %}
{% if item.history_creation_date != item.last_edition_date %}
<div class="col-12 col-md-6 col-lg-4 d-flex flex-wrap row">
<dt class="col-5">{% trans "Modification" context "Sheet" %}</dt>
<dd class='col-7'>
{{item.history_modifier.ishtaruser.person}}
{{item.history_modifier.ishtaruser.person|link_to_window}} <br/>
<small class="text-muted">{% firstof item.history_date|date:"DATETIME_FORMAT" item.history.all.0.history_date|date:"DATETIME_FORMAT" %}</small>
</dd>
</div>
{% endif %}
|