{# <div class="card">
<div class="card-body">
{% if product.company.abonnement != null %}
{% if product.company.abonnement.isActive == true %}
{% if product.company.abonnement.typeAbonnement.prix != 49 %}
{% include "front/product/location/subform_location.html.twig" with {'product' : product} %}
{% else %}
<div class="d-flex justify-content-center align-items-center h-100">
<div class="alert alert-info text-center" style="margin-bottom: 0;">
<i class="fas fa-info-circle"></i><br>
Les conditions requises pour l'activation du paiement en ligne du prestataire ne sont pas satisfaites.
</div>
</div>
{% endif %}
{% elseif product.company.abonnement.isActive == false and product.company.commissionActive == true %}
{% include "front/product/location/subform_location.html.twig" with {'product' : product} %}
{% else %}
<div class="d-flex justify-content-center align-items-center h-100">
<div class="alert alert-info text-center" style="margin-bottom: 0;">
<i class="fas fa-info-circle"></i><br>
Le paiement en ligne n'est pas encore disponible pour le prestataire.
<br>
<a
href="{{ path('send_email_to_company', { companyId: product.company.id, productId: product.id }) }}"
class="btn btn-info mt-2 text-light"
>
Informer le prestataire
</a>
</div>
</div>
{% endif %}
{% elseif product.company.abonnement == null and product.company.commissionActive == true %}
{% include "front/product/location/subform_location.html.twig" with {'product' : product} %}
{% else %}
<div class="d-flex justify-content-center align-items-center h-100">
<div class="alert alert-info text-center" style="margin-bottom: 0;">
<i class="fas fa-info-circle"></i><br>
La fonctionnalité paiement en ligne du prestataire n'est pas encore accessible.
<br>
<a
href="{{ path('send_email_to_company', { companyId: product.company.id, productId: product.id }) }}"
class="btn btn-info mt-2 text-light"
>
Informer le prestataire
</a>
</div>
</div>
{% endif %}
</div>
</div> #}
<div class="card">
<div class="card-body">
{% include "front/product/location/subform_location.html.twig" with {'product' : product} %}
</div>
</div>