41 lines
2.7 KiB
Twig
41 lines
2.7 KiB
Twig
{% extends 'artemis/base.twig' %}
|
|
{% block title %}Revendeur(s){% endblock %}
|
|
{% block content %}
|
|
<div class="flex justify-between items-center mb-6">
|
|
<h2 class="text-3xl font-semibold text-gray-800 dark:text-gray-200">Listes des revendeur</h2>
|
|
<div>
|
|
<a href="{{ path('artemis_revendeur_add') }}" class="px-4 py-2 bg-blue-600 text-white font-medium rounded-md shadow-md hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:ring-offset-2 dark:focus:ring-offset-gray-900">
|
|
+ Crée un revendeur
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<div class="mt-2 w-full mx-auto bg-gray-800 rounded-lg shadow-lg overflow-x-auto">
|
|
<table class="min-w-full divide-y divide-gray-700">
|
|
<thead class="bg-gray-700">
|
|
<tr>
|
|
<th scope="col" class="px-6 py-3 text-left text-xs font-medium uppercase tracking-wider">Raison social</th>
|
|
<th scope="col" class="px-6 py-3 text-center text-xs font-medium uppercase tracking-wider">Nom prénom</th>
|
|
<th scope="col" class="px-6 py-3 text-center text-xs font-medium uppercase tracking-wider">Email téléphone</th>
|
|
<th scope="col" class="px-6 py-3 text-center text-xs font-medium uppercase tracking-wider">Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody class="divide-y divide-gray-700">
|
|
{% for revendeur in revendeurLists %}
|
|
<tr class="hover:bg-gray-700 transition relative hover:bg-gray-700 transition">
|
|
<td class="px-6 py-4 whitespace-nowrap">{{ revendeur.raisonSocial }}</td>
|
|
<td class="px-6 py-4 text-center text-sm">{{ revendeur.name }} {{ revendeur.surname }}</td>
|
|
<td class="px-6 py-4 text-center text-sm">{{ revendeur.email }} {{ revendeur.phone }}</td>
|
|
<td class="px-6 py-4 whitespace-nowrap text-sm text-center">
|
|
<a href="{{ path('artemis_revendeur_view',{id:revendeur.id}) }}" class="bg-blue-600 hover:bg-blue-700 text-white px-3 py-1 rounded mr-2">Modifier</a>
|
|
<a href="{{ path('artemis_revendeur',{id:revendeur.id}) }}&sendLink=1" class="bg-blue-600 hover:bg-blue-700 text-white px-3 py-1 rounded mr-2">Envoyée le lien du revendeur</a>
|
|
<a target="_blank" href="https://{{ revendeur.code }}-demande.esy-web.fr" class="bg-blue-600 hover:bg-blue-700 text-white px-3 py-1 rounded mr-2">Voir le lien du revendeur</a>
|
|
<a href="{{ path('artemis_revendeur',{id:revendeur.id}) }}?delete=1" class="bg-red-600 hover:bg-red-700 text-white px-3 py-1 rounded mr-2">Supprimer</a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
{% endblock %}
|