{% extends 'admin/base.html.twig' %} {% block title %}Mon offre - {{ site.name }}{% endblock %} {% block breadcrumb %}Tableau de bord Mon offre & widgets{% endblock %} {# Page « Mon abonnement » : ce que l'offre du site inclut, ce qu'elle n'inclut pas, et le catalogue complet des widgets par formule. Variables : site, subscription, plan, plans (formules actives), impact (PlanChangeImpact::current). #} {% set limits = get_plan_limits(site) %} {% block body %}
Site : {{ site.name }}
Vos visiteurs ne voient pas ces éléments ; vous les retrouverez en passant à une offre qui les inclut.
{% if plan.isFree %}Gratuit{% else %}{{ plan.priceMonthly }} €/mois{% endif %}
{% if not plan.isFree %}{% if subscription.billingInterval == 'yearly' %}Facturé {{ plan.priceYearly }} €/an{% else %}ou {{ plan.priceYearly }} €/an{% endif %} · statut : {{ subscription.status }} {% if subscription.currentPeriodEnd %}· jusqu'au {{ subscription.currentPeriodEnd|date('d/m/Y') }}{% endif %}
{% endif %}Passer à {{ nextPlan.name }} débloque {{ widget_count_for_plan(nextPlan) - widget_count_for_plan(plan) }} widget{{ (widget_count_for_plan(nextPlan) - widget_count_for_plan(plan)) > 1 ? 's' : '' }} de plus. Voir les formules
{% else %}Votre offre inclut tous les widgets de l'éditeur.
{% endif %} {% include 'admin/_widgets-catalog.html.twig' with {'plans': plans, 'highlight': plan} %}