{% extends 'Common/baseAdminPannel.html.twig' %}
{% block title %}
{{ "Detalles de la solicitud"|trans }}
{% endblock %}
{% block subtitle %}{% endblock %}
{% block body %}
{% if entity.service is defined %}
{{ include('backend/reservations/payment/showServicePayment.html.twig', {'service':entity.service}) }}
{% elseif entity.reservation is defined and entity.reservation is not null %}
{% if entity.reservation.approvedQuotation %}
{{ include('backend/reservations/payment/showClientPayment.html.twig', {'quotation':entity.reservation.approvedQuotation}) }}
{% else %}
{{ 'La reservación no cuenta con una cotización aprobada. ' }}
{% endif %}
{% elseif entity.client is defined and entity.client is not null %}
{{ include('backend/reservations/payment/showPursePayment.html.twig') }}
{% endif %}
{% endblock %}