mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-07-03 07:26:12 +00:00
20 lines
715 B
Twig
20 lines
715 B
Twig
{% import '@ChillMain/Workflow/macro_breadcrumb.html.twig' as m %}
|
|
|
|
<div class="flex-grow-1 {% if add_classes is defined %}{{ add_classes }}{% else %}h2{% endif %}">
|
|
<div>
|
|
{% if concerne is defined and concerne == true %}
|
|
<span class="item-key">{{ 'Concerne'|trans }}: </span>
|
|
{% endif %}
|
|
|
|
{{ 'workflow.Evaluation (n°%eval%)'|trans({'%eval%': evaluation.id}) }}
|
|
|
|
{% if description is defined and description == true %}
|
|
{{ ' — ' ~ evaluation.evaluation.title|localize_translatable_string }}
|
|
{% endif %}
|
|
</div>
|
|
|
|
{% if breadcrumb is defined and breadcrumb == true %}
|
|
{{ m.breadcrumb(_context) }}
|
|
{% endif %}
|
|
</div>
|