|
@@ -50,7 +50,13 @@
|
50
|
50
|
|
51
|
51
|
<div style="margin: -1.5em auto -1.5em auto;" class="tracim-less-visible">
|
52
|
52
|
<% created_localized = h.get_with_timezone(result.folder.created) %>
|
53
|
|
- <p>${_('folder created on {date} at {time} by <b>{author}</b>').format(date=h.date(created_localized), time=h.time(created_localized), author=result.folder.owner.name)|n}</p>
|
|
53
|
+ <% updated_localized = h.get_with_timezone(result.folder.updated) %>
|
|
54
|
+ <% last_modification_author = result.folder.last_modification_author.name %>
|
|
55
|
+ <p>${_('folder created on {date} at {time} by <b>{author}</b>').format(date=h.date(created_localized), time=h.time(created_localized), author=result.folder.owner.name)|n}
|
|
56
|
+ % if result.folder.revision_nb > 1:
|
|
57
|
+ ${_(' (last modification on {update_date} at {update_time} by {last_modification_author})').format(update_date=h.update_date(updated_localized), update_time=h.update_time(updated_localized), last_modification_author = last_modification_author)|n}
|
|
58
|
+ % endif
|
|
59
|
+ </p>
|
54
|
60
|
</div>
|
55
|
61
|
</div>
|
56
|
62
|
</div>
|