mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-16 23:34:23 +00:00
8 lines
330 B
Twig
8 lines
330 B
Twig
{% for customField in cFGroup.activeCustomFields %}
|
|
{% if customField.type == 'title' %}
|
|
{{ chill_custom_field_widget(cFData , customField) }}
|
|
{% else %}
|
|
<dt>{{ chill_custom_field_label(customField) }}</dt>
|
|
<dd>{{ chill_custom_field_widget(cFData , customField) }}</dd>
|
|
{% endif %}
|
|
{% endfor %} |