{% 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) %}