Lines 8-14
Link Here
|
8 |
<h1 class="modal-title" id="cancelBookingLabel">Cancel booking</h1> |
8 |
<h1 class="modal-title" id="cancelBookingLabel">Cancel booking</h1> |
9 |
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> |
9 |
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> |
10 |
</div> |
10 |
</div> |
11 |
<div class="modal-body"> |
11 |
<div class="modal-body overflow-visible"> |
12 |
<div id="cancel_booking_result"></div> |
12 |
<div id="cancel_booking_result"></div> |
13 |
<input type="hidden" name="booking_id" id="cancel_booking_id"> |
13 |
<input type="hidden" name="booking_id" id="cancel_booking_id"> |
14 |
<p>Are you sure you want to cancel this booking?</p> |
14 |
<p>Are you sure you want to cancel this booking?</p> |
Lines 17-23
Link Here
|
17 |
<div class="combobox-container"> |
17 |
<div class="combobox-container"> |
18 |
<label for="cancellation-reason" class="form-label">Cancellation Reason:</label> |
18 |
<label for="cancellation-reason" class="form-label">Cancellation Reason:</label> |
19 |
<input type="text" id="cancellation-reason" name="cancellation_reason" class="form-control" /> |
19 |
<input type="text" id="cancellation-reason" name="cancellation_reason" class="form-control" /> |
20 |
<ul id="cancellation-reason-list" class="dropdown-menu position-fixed" style="max-height: 200px; overflow-y: auto; max-width: fit-content;"> |
20 |
<ul id="cancellation-reason-list" class="dropdown-menu"> |
21 |
[% IF booking_cancellation.count %] |
21 |
[% IF booking_cancellation.count %] |
22 |
[% FOR reason IN booking_cancellation %] |
22 |
[% FOR reason IN booking_cancellation %] |
23 |
<li> |
23 |
<li> |
24 |
- |
|
|