Paiement en espèces uniquement.
Vous pouvez enregistrer une cotisation pour un adhérent existant ou créer un nouvel adhérent.
{{ form_start(form, {'attr': {'class': 'form-horizontal', 'id': 'ssa-cotisation-form'}}) }}
{# Type d'adhérent #}
{# Adhérent existant #}
{{ form_label(form.adherent) }}
{{ form_widget(form.adherent) }}
{{ form_errors(form.adherent) }}
Recherchez un adhérent par son nom, prénom ou email
{# Nouvel adhérent #}
Création d'un nouvel adhérent
{{ form_label(form.prenom) }}
{{ form_widget(form.prenom, {'attr': {'class': 'form-control'}}) }}
{{ form_errors(form.prenom) }}
{{ form_label(form.nom) }}
{{ form_widget(form.nom, {'attr': {'class': 'form-control'}}) }}
{{ form_errors(form.nom) }}
{{ form_label(form.email) }}
{{ form_widget(form.email, {'attr': {'class': 'form-control'}}) }}
{{ form_errors(form.email) }}
Si fourni, l'adhérent pourra se connecter avec cet email
{% if form.groupe is defined %}
{{ form_label(form.groupe) }}
{{ form_widget(form.groupe, {'attr': {'class': 'form-control'}}) }}
{{ form_errors(form.groupe) }}
Groupe local de rattachement (optionnel)
{% endif %}
{# Caisse SSA #}
{{ form_label(form.solidoumeParameter) }}
{{ form_widget(form.solidoumeParameter, {'attr': {'class': 'form-control', 'id': 'ssa-select'}}) }}
{{ form_errors(form.solidoumeParameter) }}
{# Info dynamique min/max #}
Montant autorisé :
€ - €
{# Montant #}
Annuler
{# Render tous les champs restants (protection) #}
{{ form_rest(form) }}
{{ form_end(form) }}