{% extends '@kohinos/installation/layout.html.twig' %} {% block step_title %}Configuration des cotisations{% endblock %} {% block step_content %}

Configurez les paramètres des cotisations pour les adhérents et les prestataires.

{{ form_start(form, {'attr': {'class': 'installation-form'}}) }}

Adhérent

{# //add cotisation_use_civil_year #}
{{ form_label(form.cotisation_use_civil_year) }} {{ form_widget(form.cotisation_use_civil_year) }} {{ form_errors(form.cotisation_use_civil_year) }} {% if form.cotisation_use_civil_year.vars.help is defined %} {{ form.cotisation_use_civil_year.vars.help|raw }} {% endif %}
{{ form_label(form.cotisation_adherent) }} {{ form_widget(form.cotisation_adherent) }} {{ form_errors(form.cotisation_adherent) }} {% if form.cotisation_adherent.vars.help is defined %} {{ form.cotisation_adherent.vars.help|raw }} {% endif %}
{{ form_label(form.cotisation_adherent_default) }} {{ form_widget(form.cotisation_adherent_default) }} {{ form_errors(form.cotisation_adherent_default) }} {% if form.cotisation_adherent_default.vars.help is defined %} {{ form.cotisation_adherent_default.vars.help|raw }} {% endif %}
{{ form_widget(form.cotisation_free_amount) }} {{ form_label(form.cotisation_free_amount) }}
{{ form_errors(form.cotisation_free_amount) }} {% if form.cotisation_free_amount.vars.help is defined %} {{ form.cotisation_free_amount.vars.help|raw }} {% endif %}
{{ form_widget(form.donation_adherent_cotisation) }} {{ form_label(form.donation_adherent_cotisation) }}
{{ form_errors(form.donation_adherent_cotisation) }} {% if form.donation_adherent_cotisation.vars.help is defined %} {{ form.donation_adherent_cotisation.vars.help|raw }} {% endif %}
{{ form_widget(form.donation_adherent_emlc) }} {{ form_label(form.donation_adherent_emlc) }}
{{ form_errors(form.donation_adherent_emlc) }} {% if form.donation_adherent_emlc.vars.help is defined %} {{ form.donation_adherent_emlc.vars.help|raw }} {% endif %}
{{ form_widget(form.cotisation_adherent_mandatory) }} {{ form_label(form.cotisation_adherent_mandatory) }}
{{ form_errors(form.cotisation_adherent_mandatory) }} {% if form.cotisation_adherent_mandatory.vars.help is defined %} {{ form.cotisation_adherent_mandatory.vars.help|raw }} {% endif %}

Prestataire

{{ form_label(form.cotisation_prestataire) }} {{ form_widget(form.cotisation_prestataire) }} {{ form_errors(form.cotisation_prestataire) }} {% if form.cotisation_prestataire.vars.help is defined %} {{ form.cotisation_prestataire.vars.help|raw }} {% endif %}
{{ form_label(form.reconversion_prestataire) }} {{ form_widget(form.reconversion_prestataire) }} {{ form_errors(form.reconversion_prestataire) }} {% if form.reconversion_prestataire.vars.help is defined %} {{ form.reconversion_prestataire.vars.help|raw }} {% endif %}
{{ form_widget(form.donation_prestataire_cotisation) }} {{ form_label(form.donation_prestataire_cotisation) }}
{{ form_errors(form.donation_prestataire_cotisation) }} {% if form.donation_prestataire_cotisation.vars.help is defined %} {{ form.donation_prestataire_cotisation.vars.help|raw }} {% endif %}
{{ form_widget(form.donation_prestataire_emlc) }} {{ form_label(form.donation_prestataire_emlc) }}
{{ form_errors(form.donation_prestataire_emlc) }} {% if form.donation_prestataire_emlc.vars.help is defined %} {{ form.donation_prestataire_emlc.vars.help|raw }} {% endif %}
{{ form_widget(form.cotisation_prestataire_mandatory) }} {{ form_label(form.cotisation_prestataire_mandatory) }}
{{ form_errors(form.cotisation_prestataire_mandatory) }} {% if form.cotisation_prestataire_mandatory.vars.help is defined %} {{ form.cotisation_prestataire_mandatory.vars.help|raw }} {% endif %}
Retour
{{ form_end(form) }} {% endblock %}