- Lien Contrats dans la sidebar (entre Clients et Facturation) - Controller ContratController avec route /admin/contrats - Template placeholder avec description du flow futur: creer contrat -> signer -> creation espace client auto Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
27 lines
1.3 KiB
Twig
27 lines
1.3 KiB
Twig
{% extends 'admin/_layout.html.twig' %}
|
|
|
|
{% block title %}Contrats - Association E-Cosplay{% endblock %}
|
|
|
|
{% block admin_content %}
|
|
<div class="page-container">
|
|
<div class="flex items-center justify-between mb-6">
|
|
<h1 class="text-2xl font-bold heading-page">Contrats</h1>
|
|
</div>
|
|
|
|
{% for type, messages in app.flashes %}
|
|
{% for message in messages %}
|
|
<div class="mb-4 p-4 glass font-medium text-sm {{ type == 'success' ? 'border-green-300 text-green-800' : 'border-red-300 text-red-800' }}">{{ message }}</div>
|
|
{% endfor %}
|
|
{% endfor %}
|
|
|
|
<div class="glass p-12 text-center">
|
|
<svg xmlns="http://www.w3.org/2000/svg" class="h-16 w-16 mx-auto mb-4 text-gray-300" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="1">
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z" />
|
|
</svg>
|
|
<p class="text-gray-400 font-bold uppercase text-sm tracking-wider mb-2">Contrats</p>
|
|
<p class="text-gray-300 text-xs">Cette section sera disponible prochainement.</p>
|
|
<p class="text-gray-300 text-xs mt-1">Creez un contrat, faites-le signer, puis l'espace client sera cree automatiquement.</p>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|