mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-24 23:55:02 +00:00
14 lines
454 B
Twig
14 lines
454 B
Twig
{% set reversed_parents = parents|reverse %}
|
|
<span class="chill-entity entity-event-theme">
|
|
<span class="badge bg-chill-l-gray text-dark">
|
|
{%- for p in reversed_parents %}
|
|
<span class="parent-{{ loop.revindex0 }}">
|
|
{{ p.name|localize_translatable_string }}{{ options['default.separator'] }}
|
|
</span>
|
|
{%- endfor -%}
|
|
<span class="child">
|
|
{{ eventTheme.name|localize_translatable_string }}
|
|
</span>
|
|
</span>
|
|
</span>
|