mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-26 12:06:13 +00:00
14 lines
506 B
Twig
14 lines
506 B
Twig
{% set reversed_parents = parents|reverse %}
|
|
<span class="chill-entity chill-entity__social-issue">
|
|
<span class="badge badge-primary">
|
|
{%- for p in reversed_parents %}
|
|
<span class="chill-entity__social-issue__parent--{{ loop.revindex0 }}">
|
|
{{ p.title|localize_translatable_string }}{{ options['default.separator'] }}
|
|
</span>
|
|
{%- endfor -%}
|
|
<span class="chill-entity__social-issue__child">
|
|
{{ socialIssue.title|localize_translatable_string }}
|
|
</span>
|
|
</span>
|
|
</span>
|