(Groupe) {{ category.name }}( {{ category.customStringId }} )
{% if not category.displayInForm or not category.displayInMenu %}{% endif %}
{% if category.options|length and not category.unexpandable %}{% endif %}
{% if category.isMandatory %}Obligatoire{% endif %}
{{ category.singleOption ? 'categories.list.unique'|trans : 'categories.list.multiple'|trans }}
{% if category.enableDescription %}{{ 'categories.list.categoriesDescription'|trans }}{% endif %}
{% for key, option in category.options %}
{% if option.iconFile %}
{% else %}
{% endif %}
{{ option.name }}
{% if not option.displayInForm or not option.displayInMenu %}{% endif %}
( {{ option.customStringId }} ) {{ option.osmTagsStringified }}
{% if option.subcategories|length and not option.unexpandable %}{% endif %}
{% for subkey, subcategory in option.subcategories %}
{% include 'admin/list/tree_category_item.html.twig' with {'category': subcategory, 'firstDepth':false } %}
{% endfor %}