{% macro updatedBy(entity) %}
{{ 'Last updated on'|trans }} {{ entity.updatedAt|format_datetime('medium', 'short') }} {% if entity.updatedBy %} {{ ', ' ~ 'by_user'|trans }} {{ entity.updatedBy|chill_entity_render_box }} {% endif %}
{% endmacro %} {% macro createdBy(entity) %}
{{ 'Created on'|trans }} {{ entity.createdAt|format_datetime('medium', 'short') }} {% if entity.createdBy %} {{ ', ' ~ 'by_user'|trans }} {{ entity.createdBy|chill_entity_render_string }} {% endif %}
{% endmacro %}