{% extends 'layouts/authenticated.html.twig' %} {% block page_title %}{{ page_title }}{% endblock %} {% block content %}

{{ page_title }}

{# List #}
{% for cat in categories %} {% else %} {% endfor %}
Nom Couleur Équipements Statut Actions
{% for i in 1..cat.depth %}— {% endfor %}{{ cat.name }} {% if cat.description %}
{{ cat.description|length > 60 ? cat.description|slice(0, 60) ~ '...' : cat.description }}{% endif %}
{{ cat.color }} {{ cat.equipmentCount }} {% if cat.isActive %} Actif {% else %} Inactif {% endif %}
Aucune catégorie
{% if categories.getTotalItemCount is defined and categories.getTotalItemCount > 0 %}
{{ knp_pagination_render(categories) }}
{% endif %}
{# Create Form #}

Nouvelle catégorie

{{ form(createForm) }}
{% endblock %}