angga1518

viewall-bioskop.html

Sep 19th, 2021
479
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.54 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.         <h2>Daftar Seluruh Bioskop</h2>
  13.         <br>
  14.         <div th:each="bioskop : ${listBioskop}" class="card m-4 p-4">
  15.             <div class="card-body">
  16.                 <div class="justify-content-center">
  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.                     <br>
  24.                     <a class="btn btn-primary" th:href="@{/bioskop/view(noBioskop=${bioskop.noBioskop})}">Detail
  25.                         Bioskop</a>
  26.                     <a class="btn btn-primary" th:href="@{/bioskop/update/} + ${bioskop.noBioskop}">Update Bioskop</a>
  27.                 </div>
  28.             </div>
  29.             <br>
  30.         </div>
  31.         <a class="btn btn-primary" href="/">Home</a>
  32.     </div>
  33.  
  34. </body>
  35.  
  36. </html>
Advertisement
Add Comment
Please, Sign In to add comment