{% extends 'layouts/authenticated.html.twig' %} {% block page_title %}Categories de services{% endblock %} {% block content %}
Organisation du catalogue de services
| Nom | Icone | Couleur | Services | Statut | Actions |
|---|---|---|---|---|---|
| {% if category.depth is defined %}{% for i in range(1, category.depth|default(0)) %} -- {% endfor %}{% endif %} {{ category.name }} | {% if category.icon %} {% else %} — {% endif %} | {% if category.color %} {% else %} — {% endif %} | {{ category.serviceCount|default(0) }} | {% if category.isActive %} Actif {% else %} Inactif {% endif %} | {% include 'components/pos/_confirm_modal.html.twig' with { modal_id: 'del-scat-' ~ category.id, title: 'Supprimer la categorie', message: 'Supprimer la categorie « ' ~ category.name ~ ' » ? Les services associes seront decategorises.', action_url: path('manager_pos_service_categories_delete', {id: category.id}), csrf_token_name: 'delete_service_category_' ~ category.id, } %} |