{% extends 'Common/baseAdminPannel.html.twig' %}
{% block title %}
Reservación {{ reservation.folio }}
{% endblock %}
{% block body %}
{% if warning is defined and warning %}
{{ warning|raw }}
{% endif %}
{% embed 'Common/baseAdminPannel.html.twig' %}
{% block title %}
Datos de la reservación
{% endblock %}
{% block subtitle %}
{% endblock %}
{% block body %}
{% include 'backend/reservations/quotation/reservationSummary.html.twig' %}
{% endblock %}
{% endembed %}
{% embed 'Common/baseAdminPannel.html.twig' %}
{% block title %}
Datos del cliente
{% endblock %}
{% block subtitle %}
{% endblock %}
{% block body %}
{% include 'backend/core/client/details.html.twig' with {"client":reservation.client, "contactData": reservation.client.contactDatas, "reservation":reservation} %}
{% endblock %}
{% endembed %}
{% embed 'Common/baseAdminPannel.html.twig' %}
{% block title %}
Cotizaciones
{% endblock %}
{% block subtitle %}
{% endblock %}
{% block body %}
{% if is_granted("ADD_QUOTATION", reservation) and is_granted("RESERV_QUOTATION_CREATE") and not reservation.quotingFinished %}
{% endif %}
{% if quotations %}
{% include 'backend/reservations/quotation/list.html.twig' with {quotation: quotations} %}
{% else %}
{#
No cuentas con cotizaciones para esta reservación, puedes hacer click en el botón de "Nueva cotización" para empezar.
#}
{% endif %}
{% endblock %}
{% endembed %}
{% embed 'Common/baseAdminPannel.html.twig' %}
{% block title %}
Historial de interacción con el cliente
{% endblock %}
{% block subtitle %}
{% endblock %}
{% block body %}
{% if is_granted("RESERV_INTERACTION_CREATE") %}