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

{{ page_title }}

Gérez les entreprises de votre plateforme

{# Filter Section #}
{{ form_start(filterForm, {'attr': {'class': 'space-y-4', 'data-controller': 'form-submit'}}) }}
{# Search Field #}
{{ form_widget(filterForm.search, { 'attr': { 'class': 'block w-full rounded-md border-gray-300 shadow-sm focus:border-indigo-500 focus:ring-indigo-500 sm:text-sm transition-all duration-200', 'placeholder': 'Nom, email, ville...' } }) }}
{# Status Filter #}
{{ form_widget(filterForm.status, { 'attr': { 'class': 'block w-full rounded-md border-gray-300 shadow-sm focus:border-indigo-500 focus:ring-indigo-500 sm:text-sm transition-all duration-200' } }) }}
{# Date From #}
{{ form_widget(filterForm.dateFrom, { 'attr': { 'class': 'block w-full rounded-md border-gray-300 shadow-sm focus:border-indigo-500 focus:ring-indigo-500 sm:text-sm transition-all duration-200' } }) }}
{# Date To #}
{{ form_widget(filterForm.dateTo, { 'attr': { 'class': 'block w-full rounded-md border-gray-300 shadow-sm focus:border-indigo-500 focus:ring-indigo-500 sm:text-sm transition-all duration-200' } }) }}
{# Filter Actions #} {{ form_end(filterForm) }}
{# View Mode Toggle + Stats - Desktop Only #} {# Desktop Table View #} {% if viewMode == 'table' %} {% endif %} {# Desktop Grid View #} {% if viewMode == 'grid' %} {% endif %} {# Mobile Card View (Always visible on mobile) #}
{% if companies is empty %}

Aucune entreprise trouvée

Commencez par créer votre première entreprise

{% else %}
{% for company in companies %} {% include 'admin/components/cards/companies_card.html.twig' with {company: company} %} {% endfor %}
{% endif %}
{# Pagination #} {% if companies.getTotalItemCount > 0 %}
{% if companies.currentPageNumber > 1 %} Précédent {% endif %} {% if companies.currentPageNumber < companies.pageCount %} Suivant {% endif %}
{% endif %}
{% endblock %}