{% if app.user %}
{% set bookings = CourtBookings.checkBookingStatus(hour.sort,tennis_venue,date) %}
{% if bookings|length > 0 %}
{% for booking in bookings %}
{% if (is_granted('ROLE_ACEIFY') and booking.isAceifyBooking ==1 or booking.player1 == app.user or booking.player2 == app.user or booking.player3 == app.user or booking.player4 == app.user) %}
{% if booking.status =="Confirmed" %}
{% if booking.player1 == ActiveAceifyClient.findClient(app.user) or booking.player1== app.user %}
<a target="_blank"
href="{{ path('tennis_bookings_edit', {id: booking.id} ) }}"
title="{{ booking.player1.fullName }}; Paid £{{ booking.cost|format(2, '.', ',') }}; Court {{ booking.tennisCourtAvailability.courtNumber }}"></i>
<i style="font-size: 15px; color: red"
class="fas fa-info-circle"> </i> {{ booking.player1.fullName }}</a><br>
{% else %}
<a target="_blank"
href="{{ path('tennis_bookings_edit', {id: booking.id} ) }}"
title="{{ booking.player1.fullName }}; Paid £{{ booking.cost|format(2, '.', ',') }}; Court {{ booking.tennisCourtAvailability.courtNumber }}"></i>
<i style="font-size: 15px; color: blue"
class="fas fa-info-circle"></i>{{ booking.player1.fullName }} </a>
{% endif %}
{% elseif booking.status =="Bid" %}
{% if booking.bidPrice ==0 %}
{% set title = booking.player1.fullName %}
{% else %}
{% set title = booking.player1.fullName ~ " bid £"~ booking.bidPrice|format(2, '.', ',') %}
{% endif %}
{% if booking.player1 == ActiveAceifyClient.findClient(app.user) or booking.player1== app.user %}
<a target="_blank"
href="{{ path('tennis_bookings_edit', {id: booking.id} ) }}"
title="{{ title }}"></i>
<i style="font-size: 15px; color: red; background-color: whitesmoke"
class="fa fa-calendar-plus-o"> </i> {{ booking.player1.fullName }}</a><br>
{% else %}
<a target="_blank"
href="{{ path('tennis_bookings_edit', {id: booking.id} ) }}"
title="{{ title }}"></i>
<i style="font-size: 15px; color: blue; background-color: whitesmoke"
class="fa fa-calendar-plus-o"></i> {{ booking.player1.fullName }}</a>
{% endif %}
{% endif %}
{% endif %}
{% endfor %}
{% endif %}
{% endif %}