{% extends 'entreprise/entreprise_base.html.twig' %} {% block title %}Choisir un forfait | Nos Offres{% endblock %} {% block body %}
{# --- HEADER --- #}
{% include 'flash_messages.html.twig' %}
Abonnements

Passez à la vitesse supérieure

Tarifs mensuels pour un engagement d'un an.

{# --- GRILLE DES PLANS --- #}
{% for plan in plans %} {% set isFreePlan = (plan.id == 1 or plan.prix <= 0) %} {% set isDisabled = (isFreePlan and aDejaUtiliseGratuit) %} {# Détection du plan actuel de l'entreprise #} {% set currentAbo = app.user.entreprise.abonnementActuel %} {% set isCurrentPlan = (currentAbo and currentAbo.abonnement.id == plan.id) %}
{% if isCurrentPlan %}
Actuel
{% elseif plan.id == 2 and not isDisabled %}
Populaire
{% endif %} {% if isDisabled %}
DÉJÀ UTILISÉ
{% endif %}

{{ plan.titre }}

{{ plan.description }}

{{ plan.prix|number_format(0, '.', ' ') }} FCFA /mois
Engagement 12 mois
  • Lots / Immeubles : {{ plan.limiteImmeuble == -1 ? 'Illimité' : plan.limiteImmeuble }}
  • Appartements : {{ plan.limiteAppartement == -1 ? 'Illimité' : plan.limiteAppartement }}
  • Locataires : {{ plan.limiteLocataire == -1 ? 'Illimité' : plan.limiteLocataire }}
  • Facturation automatique
  • Impression quittances
  • Export PDF/Excel
  • {{ plan.isMultiUser ? 'Accès Multi-utilisateurs' : 'Utilisateur unique' }}
  • Statistiques & Tableaux
  • Support {{ plan.isHasPrioritySupport ? 'Prioritaire 24/7' : 'par Email' }}
{% if isDisabled %} {% elseif isCurrentPlan %} {# BOUTON RENOUVELLEMENT POUR LE PLAN ACTIF #} Renouveler l'offre
Expire le {{ currentAbo.dateFin|date('d/m/Y') }}
{% else %} {# BOUTON SOUSCRIRE OU CHANGER #} {{ isFreePlan ? 'Commencer' : (currentAbo ? 'Passer à ce forfait' : 'Souscrire') }} {% endif %}
{% endfor %}
{% endblock %}