{% extends 'admin/base.html.twig' %} {% block title %}{{ isEdit ? 'Modifier' : 'Créer' }} un plan tarifaire{% endblock %} {% block breadcrumb %}Super Administration Plans tarifaires {{ isEdit ? 'Modifier' : 'Créer' }}{% endblock %} {% block body %}
{# Header #}

{{ isEdit ? 'Modifier' : 'Créer' }} un plan tarifaire

{{ isEdit ? 'Modifiez les informations du plan "' ~ plan.name ~ '"' : 'Créez un nouveau plan d\'abonnement' }}

Retour
{# Formulaire #}
{{ form_start(form) }} {# Informations générales #}
Informations générales
{{ form_row(form.name) }}
{{ form_row(form.code) }}
{{ form_row(form.description) }}
{# Tarification #}
Tarification
{{ form_row(form.priceMonthly) }}
{{ form_row(form.priceYearly) }}
Astuce : Pour un plan avec 2 mois offerts, multipliez le prix mensuel par 10. Exemple : 9,90€/mois × 10 = 99€/an
{# Limites #}
Limites et quotas
{{ form_row(form.maxSites) }}
{{ form_row(form.maxPages) }}
{{ form_row(form.maxStorage) }}
{# Fonctionnalités #}
Fonctionnalités disponibles
{{ form_widget(form.customDomain, {'attr': {'class': 'form-check-input', 'role': 'switch'}}) }} {{ form_label(form.customDomain, null, {'label_attr': {'class': 'form-check-label'}}) }}
{{ form_widget(form.removeWatermark, {'attr': {'class': 'form-check-input', 'role': 'switch'}}) }} {{ form_label(form.removeWatermark, null, {'label_attr': {'class': 'form-check-label'}}) }}
{{ form_widget(form.prioritySupport, {'attr': {'class': 'form-check-input', 'role': 'switch'}}) }} {{ form_label(form.prioritySupport, null, {'label_attr': {'class': 'form-check-label'}}) }}
{{ form_widget(form.aiGeneration, {'attr': {'class': 'form-check-input', 'role': 'switch'}}) }} {{ form_label(form.aiGeneration, null, {'label_attr': {'class': 'form-check-label'}}) }}
{{ form_widget(form.hasAds, {'attr': {'class': 'form-check-input', 'role': 'switch'}}) }} {{ form_label(form.hasAds, null, {'label_attr': {'class': 'form-check-label'}}) }}
{{ form_help(form.hasAds) }}
{# Configuration #}
Configuration
{{ form_widget(form.isActive, {'attr': {'class': 'form-check-input', 'role': 'switch'}}) }} {{ form_label(form.isActive, null, {'label_attr': {'class': 'form-check-label'}}) }}
{{ form_help(form.isActive) }}
{{ form_row(form.displayOrder) }}
{# Actions #}
Annuler
{{ form_end(form) }}
{# Aide #} {% if not isEdit %}
Exemple de configuration
Plan Starter (Gratuit)
  • Prix : 0€ / 0€
  • 1 site, 5 pages
  • 100 MB stockage
  • Avec publicité ✓
Plan Basic (9,90€)
  • Prix : 9,90€ / 99€
  • 1 site, pages illimitées (9999)
  • 5120 MB (5 GB)
  • Domaine perso ✓
Plan Pro (24,90€)
  • Prix : 24,90€ / 249€
  • 3 sites, pages illimitées
  • 25600 MB (25 GB)
  • Toutes les fonctionnalités ✓
{% endif %}
{% endblock %}