Ignore:
Timestamp:
08/24/23 02:28:14 (15 months ago)
Author:
DenicaKj <dkorvezir@…>
Branches:
master
Children:
bcb4acc
Parents:
40935d3
Message:

fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/resources/templates/myTickets.html

    r40935d3 r1e7126f  
    2929    <div class="row">
    3030        <div class="col-12 mt-3" style="padding-left:100px;height:75%;">
    31             <div class="card" th:each="ticket : ${tickets}" style=" border-radius: 30px;width:92%;align-self:center">
     31            <div class="card" th:each="t : ${tickets}" style=" border-radius: 30px;width:92%;align-self:center; margin-bottom: 5%">
    3232                <div class="card-horizontal" >
    3333                    <div class="card-body">
     
    3636                            <div>
    3737                                <span>Филм:</span>
    38                                 <span th:text="${ticket.projection.film.name}"></span></div>
     38                                <span th:text="${t.ticket.projection.film.name}"></span></div>
    3939                            <div>
    4040                                <span>Почеток на проекција: </span>
    41                                 <span th:text="${ticket.projection.date_time_start}"></span></div>
     41                                <span th:text="${t.ticket.projection.date_time_start}"></span></div>
    4242                            <div>
    4343                                <span>Крај на проекција: </span>
    44                                 <span th:text="${ticket.projection.date_time_end}"></span></div>
     44                                <span th:text="${t.ticket.projection.date_time_end}"></span></div>
    4545                        </h4>
    4646
    47                         <p class="card-text" th:text="${ticket.projection.type_of_technology}"></p>
    48                         <span>Број на седиште: </span><p class="card-text" th:text="${ticket.seat.seat_number}"></p>
    49                         <span>Цена: </span><p class="card-text" th:text="${ticket.price}"></p>
     47                        <p class="card-text" th:text="${t.ticket.projection.type_of_technology}"></p>
     48                        <span>Број на седиште: </span><p class="card-text" th:text="${t.ticket.seat.seat_number}"></p>
     49                        <span>Цена: </span><p class="card-text" th:text="${t.ticket.price}"></p>
    5050                    </div>
    5151                </div>
    5252                <div class="card-footer" style="border-bottom-right-radius:30px;border-bottom-left-radius:30px">
    5353                    <small>
    54                         <form th:action="@{'/home/getSeats/{id}' (id=${ticket.id_ticket})}"
    55                               th:method="GET">
    56                             <--button th:if="${ticket.projection.date_time_start != null and #dates.isBefore(java.time.LocalDateTime.of(ticket.projection.date_time_start, java.time.LocalTime.MIN).toInstant(java.time.ZoneOffset.UTC).toEpochMilli(), java.util.Date.from(java.time.LocalDate.now().atStartOfDay(java.time.ZoneId.systemDefault()).toInstant()).getTime())}" class="button" type="submit">Откажи</--button>
     54                        <form th:action="@{'/cancelTicket/{id}' (id=${t.ticket.id_ticket})}"
     55                              th:method="POST">
     56                            <button th:if="${t.canCancel}" class="button" type="submit">Откажи</button>
    5757                        </form>
    5858
Note: See TracChangeset for help on using the changeset viewer.