{# templates/admin/hebergement/index.html.twig #} {% extends 'admin/base_admin.html.twig' %} {% block title %}Hébergement annuel — Admin NUM-ECARD{% endblock %} {% block content %}
Gestion des abonnements d'hébergement — 12 € HT / an / carte après 1 an gratuit
| Bénéficiaire | Pack | Statut | Création | Expiration | Jours restants | Rappels | Actions |
|---|---|---|---|---|---|---|---|
|
{{ b.fullName }}
{{ b.commande.user.email }}
|
{# Pack #}
{{ b.commande.packLabel }} | {# Statut #}
{% if sub.isFreeForever %}
♾️ Gratuit permanent
👤 carte admin
{% else %}
{% if sub.status == 'trial' %}🟢 Essai gratuit
{% elseif sub.status == 'active' %}✅ Actif (payé)
{% elseif sub.status == 'expired' %}🔴 Expiré
{% else %}⚠️ Suspendu{% endif %}
{% endif %}
{% if sub.renewedByAdmin and not sub.isFreeForever %}
👤 renouvelé admin
{% endif %}
|
{# Création #}
{{ sub.startsAt|date('d/m/Y') }}
{{ sub.createdAt|date('d/m/Y H:i') }}
|
{# Expiration #}
{{ sub.expiresAt|date('d/m/Y') }}
{% if sub.lastRenewalAt %}
🔄 renouvelé le {{ sub.lastRenewalAt|date('d/m/Y') }}
{% endif %}
|
{# Jours restants #}
{% if sub.isFreeForever %}
♾️
{% elseif sub.status == 'expired' %}
{{ days|abs }}j dépassé
{% else %}
{{ days }}j
{% set pct = (days / 365 * 100)|round %}
{% if pct > 100 %}{% set pct = 100 %}{% endif %}
{% if pct < 0 %}{% set pct = 0 %}{% endif %}
{% endif %}
|
{# Rappels #}
{% set rem = sub.remindersSentAt %}
●
J-30
● J-7 ● J=0 |
{# Actions #}
{# Renouveler #}
{# Ajuster date #}
{# Suspendre / Réactiver selon le statut #}
{% if sub.status == 'expired' or sub.status == 'suspended' %}
{% else %}
{% endif %}
|