{% if hotelList is not empty %}
    {% for hotel in hotelList %}
        <hr/>
        <div class="row item">
            <div class="col-12">
                <h2>{{ __('hotel') }}</h2>
                <p>
                    <b>{{ __('nome') }}:</b>
                    {{ hotel.hotel.nome }}
                </p>
                <p>
                    <b>{{ __('endereco') }}:</b>
                    {{ getEnderecoHotel(hotel) }}
                </p>
            </div>
            {% for idxUh, hotelUh in hotel.reservaHotelUh %}
                <div class="col-12">
                    <h3>{{ __('quarto') }} {{ idxUh + 1 }}</h3>
                    <p>
                        <i class="fas fa-bed"></i>
                        {{ hotelUh.uh.dsCategoria }}
                    </p>
                    <p>
                        <i class="fas fa-utensils"></i>
                        {{ hotelUh.regime.dsRegime }}
                    </p>
                    <p>
                        <i class="fas fa-calendar"></i>
                        {{ dataToStringMin(hotelUh.dtEntrada) }} até {{ dataToStringMin(hotelUh.dtSaida) }}
                    </p>

                </div>
                {% if hotelUh.reservaNome is not empty and  getStOrcamento() != true %}
                    <div class="col-12">
                        <table class="table table-bordereds" style="width: 100%; text-align: left;">
                            <thead>
                            <tr>
                                <th style="width: 50%;">{{ __('nome') }}</th>
                                <th style="width: 50%;">{{ __('nascimento') }}</th>
                            </tr>
                            </thead>
                            <tbody>
                            {% for reservaNome in hotelUh.reservaNome %}
                                <tr>
                                    <td>{{ reservaNome.nmNome ~ ' ' ~ reservaNome.nmSobrenome }}</td>
                                    <td>{{ formatDateFromFormate(reservaNome.dtNascimento , 'Ymd', 'd/m/Y') }}</td>
                                </tr>
                            {% endfor %}
                            </tbody>
                        </table>
                    </div>
                {% endif %}
            {% endfor %}
        </div>
    {% endfor %}
{% endif %}