{% extends 'layouts/authenticated.html.twig' %} {% block page_title %}Services POS{% endblock %} {% block content %}
{# Header #}

Services

Catalogue de services de {{ company.name }}

{# Stats #}
{{ statistics.total|default(0) }}
Total
{{ statistics.active|default(0) }}
Actifs
{% for typeName, typeCount in statistics.byType|default({}) %}
{{ typeCount }}
{{ typeName }}
{% endfor %}
{# Filtres #}
Reset
{# Contenu #} {% if services|length > 0 %} {% if viewMode == 'grid' %} {# Vue Grille #}
{% for service in services %}

{{ service.name }}

{% if service.isActive %} {% else %} {% endif %}
{{ service.price|number_format(0, ',', ' ') }} FCFA
{% if service.category %} {{ service.category.name }} {% endif %} {% if service.serviceType %} {{ service.serviceType }} {% endif %}
{% if service.estimatedDuration %}
{{ service.estimatedDuration }} min
{% endif %}
{% endfor %}
{% else %} {# Vue Table - masquee sur mobile, remplacee par cards #} {# Vue mobile pour le mode table - cards compactes #}
{% for service in services %}

{{ service.name }}

{% if service.category %} {{ service.category.name }} {% endif %} {% if service.serviceType %} {{ service.serviceType }} {% endif %}
{{ service.price|number_format(0, ',', ' ') }} FCFA
{% if service.isActive %} {% else %} {% endif %}
{% endfor %}
{% endif %}
{{ knp_pagination_render(services) }}
{% else %}

Aucun service

Commencez par ajouter vos premiers services au catalogue.

Creer un service
{% endif %}
{% endblock %}