{% extends '@kohinos/flux/transaction.html.twig' %} {# Override the content block to include our favorite components #} {% block content %}
{% include '@kohinos/block/breadcrumb.html.twig' with {'label' : (form.vars.value.type~'_title')|trans({}, 'flux')} %}

{{ (form.vars.value.type~'_title')|trans({}, 'flux') }} :

{{ form_start(form) }} {{ form_row(form.expediteur) }} {# Check the form type and include the appropriate favorite component #} {% if form.vars.id == 'formTransactionAdherentPrestataire' or form.vars.id == 'formTransactionAdherentPrestataireSsa' %} {% include '@kohinos/block/_favorite_prestataire_select.html.twig' with {'form': form, 'favorites': getFavoritePrestataires()} %} {% elseif form.vars.id == 'formTransactionAdherentAdherent' %} {% include '@kohinos/block/_favorite_adherent_select.html.twig' with {'form': form, 'favorites': getFavoriteAdherents()} %} {% else %} {{ form_row(form.destinataire) }} {% endif %} {{ form_row(form.montant) }} {% if form.moyen is defined %} {{ form_row(form.moyen) }} {% endif %} {{ form_row(form.reference) }} {{ form_row(form.save) }} {{ form_end(form) }}
{% endblock %}