Consultation du profil et suivi des souscriptions rattachées.
{# Conteneur Flex pour aligner le bouton à droite #}
{{ include('_shared/user/show.html.twig', {'user': souscription.client}) }}
{{ include('_shared/lot/show.html.twig', {'lot': souscription.lot}) }}
{% if souscription.modeFinancement and souscription.modeFinancement.value == 'ECHEANCIER' %}
{{ include('_shared/paiement/_list_echeancier.html.twig', {
'echeanciers': souscription.echeanciers,
'souscription': souscription
}) }}
{% else %}
{{ include('_shared/paiement/_list_simple.html.twig', {'souscription': souscription, 'paiements': souscription.paiements }) }}
{% endif %}
{{ render(controller('App\\Controller\\Shared\\LotSharedController::etapesFragment', {'id': souscription.lot.id})) }}
{{ render(controller('App\\Controller\\Commercial\\Tabs\\CRMTabController::index', { 'id': souscription.id })) }}
{{ render(controller('App\\Controller\\Shared\\DocumentSharedController::renderInlineManager', {
'targetType': 'CLIENT',
'targetId': souscription.client.id
})) }}
{{ render(controller('App\\Controller\\Commercial\\Tabs\\SupportTabController::index', { 'id': souscription.id })) }}