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