angga1518

view-bioskop.html

Sep 19th, 2021
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.89 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns:th="http://thymeleaf.org">
  3.  
  4. <head>
  5.     <title>21 Cineplux</title>
  6.     <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
  7.        integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
  8. </head>
  9.  
  10. <body>
  11.     <div class="container">
  12.         <div class="card m-4 p-4">
  13.             <div class="card-body">
  14.                 <div class="justify-content-center">
  15.                     <h2>Detail Bioskop</h2>
  16.                     <br>
  17.                     <p th:text="'Nomor Bioskop : ' + ${bioskop.noBioskop}"></p>
  18.                     <p th:text="'Nama Bioskop : ' + ${bioskop.namaBioskop}"></p>
  19.                     <p th:text="'Alamat Bioskop : ' + ${bioskop.alamatBioskop}"></p>
  20.                     <p th:text="'Jumlah Studio Bioskop : ' + ${bioskop.jumlahStudio}"></p>
  21.                     <p th:text="'Waktu Buka Bioskop : ' + ${bioskop.waktuBuka}"></p>
  22.                     <p th:text="'Waktu Tutup Bioskop : ' + ${bioskop.waktuTutup}"></p>
  23.                     <div class="col">
  24.                         <h6>Penjaga : </h6>
  25.                         <div th:each="penjaga : ${listPenjaga}">
  26.                             <p th:text="'Nama : ' + ${penjaga.namaPenjaga}"></p>
  27.                             <p th:if="${penjaga.jenisKelamin == 0}">Jenis Kelamin : Perempuan</p>
  28.                             <p th:if="${penjaga.jenisKelamin == 1}">Jenis Kelamin : Laki-laki</p>
  29.                             <hr>
  30.                         </div>
  31.                     </div>
  32.                     <br>
  33.                     <a class="btn btn-primary" href="/bioskop/viewall">Kembali</a>
  34.                     <a class="btn btn-primary" th:href="@{/penjaga/add/} + ${bioskop.noBioskop}">tambah penjaga</a>
  35.                 </div>
  36.             </div>
  37.         </div>
  38.     </div>
  39.  
  40. </body>
  41.  
  42. </html>
Advertisement
Add Comment
Please, Sign In to add comment