mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-12 13:24:25 +00:00
12 lines
493 B
Twig
12 lines
493 B
Twig
<div>
|
|
<h3 class="single-line">
|
|
{{ event.datetime|format_date('long') }}
|
|
<span class="task">
|
|
{% if transition is not null %}
|
|
<span class="statement">{{ task_workflow_metadata(event.task, 'transition.sentence', transition)|trans({ '%user%': event.author.username }) }}</span>
|
|
{% else %}
|
|
<span class="statement">{{ '%user% has created the task'|trans({ '%user%': event.author.username }) }}</span>
|
|
{% endif %}
|
|
</h3>
|
|
</div>
|