chill-bundles/Resources/views/Timeline/single_task_transition_task_context.html.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>