mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
12 lines
369 B
Twig
12 lines
369 B
Twig
{% macro updatedBy(entity) %}
|
|
<div class="updatedBy">
|
|
{{ 'Last updated on'|trans }}
|
|
<span class="date">
|
|
{{ entity.updatedAt|format_datetime('medium', 'short') }}
|
|
</span>,
|
|
{{ 'by_user'|trans }}
|
|
<span class="user">
|
|
{{ entity.updatedBy|chill_entity_render_box }}
|
|
</span>
|
|
</div>
|
|
{% endmacro %} |