{% extends '@kohinos/common/layout.html.twig' %} {% block title %}Modifier ma cotisation SSA{% endblock %} {% block content %}

Modifier ma cotisation SSA

Informations sur votre cotisation actuelle
  • Caisse SSA : {{ ssa_parameter.name }}
  • Montant actuel : {{ subscription.amount|number_format(2, ',', ' ') }} €
  • Statut : {% if subscription.isValidated %} Validée {% elseif subscription.isPending %} En attente {% else %} {{ subscription.status }} {% endif %}
  • Année : {{ subscription.year }}
Important : Votre demande de modification sera envoyée au trésorier pour validation. Le nouveau montant sera appliqué après validation.
Limites de la caisse
Minimum : {{ ssa_parameter.minimum|number_format(2, ',', ' ') }} €
Maximum : {% if ssa_parameter.maximum %} {{ ssa_parameter.maximum|number_format(2, ',', ' ') }} € {% else %} Illimité {% endif %}
{{ form_start(form, {'attr': {'class': 'needs-validation', 'novalidate': 'novalidate'}}) }}
Aperçu de la modification
Montant actuel :
{{ subscription.amount|number_format(2, ',', ' ') }} €
Nouveau montant demandé :
--,-- €
Retour {{ form_widget(form.submit, { 'label': 'Demander la modification', 'attr': {'class': 'btn btn-primary'} }) }}
{{ form_end(form) }}
Que se passe-t-il ensuite ?
  1. Votre demande est envoyée au trésorier
  2. Le trésorier examine et valide (ou rejette) votre demande
  3. Vous recevez une notification par email de la décision
  4. Si validée, le nouveau montant s'applique dès le prochain prélèvement
{% endblock %}