{% extends 'backend/reservations/pdf/transformed/service.html.twig' %} {% block serviceName %}{{ 'Servicio de '~ type|trans|capitalize }}{% endblock %} {% block service_info %} {% for tour in service %}

{{ tour['tour'] }}


{{ tour['address'] }}
{#
#} {#{{ "start date" |trans |capitalize }}: {{ tour['startDate'] |date("d-m-Y") }}#} {#
#} {#
#} {#{{ "end date" |trans |capitalize }}: {{ tour['endDate'] |date("d-m-Y") }}#} {#
#}
{% if tour['images']|length >0 %}
{% for key, image in tour['images'] %} {% if key < 9 and image|generateUrl %} {% else %} {% set break = true %} {% endif %} {% endfor %}
{% endif %}

{{ "options" |trans |upper }}: {% for option in tour['options'] %}
{% if option.observations %} {% endif %}
{{ "start date" |trans |capitalize }} {{ "end date" |trans |capitalize }} {{ "adults" |trans |capitalize }} {{ "kid(s)" |trans |capitalize }} {{ "precio" |trans |capitalize }}
{{ option["startDate"]|date('d-m-Y') }} {{ option["endDate"]|date('d-m-Y') }} {{ option["adults"] }} {{ option["kids"] }} {{ option["price"]|price(option["currency"]) }}
{{ 'observations'|trans|capitalize }}: {{ option.observations|raw }}


{% endfor %}
{% endfor %} {% endblock %}