[fc7ec52] | 1 | <div xmlns:th="http://www.thymeleaf.org" xmlns="http://www.w3.org/1999/html">
|
---|
| 2 | <html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
|
---|
| 3 | <head>
|
---|
| 4 | <title>Projections Preview</title>
|
---|
| 5 | <link th:href="@{/styles/movieCSS/main.css}" rel="stylesheet" />
|
---|
| 6 | <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
|
---|
| 7 | <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
|
---|
| 8 | <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
|
---|
| 9 | <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
|
---|
| 10 | </head>
|
---|
| 11 | <body>
|
---|
| 12 | <header>
|
---|
| 13 | <section class="jumbotron text-center" xmlns:th="http://www.thymeleaf.org">
|
---|
| 14 | <div class="container">
|
---|
| 15 | <h1 style="font-size:1.5rem" class="jumbotron-heading">DETAILED PROJECTIONS OF YOUR SELECTED MOVIE</h1>
|
---|
| 16 | <a href="/movies"><p>Go back to movies page</p></a>
|
---|
| 17 | </div>
|
---|
| 18 | </section>
|
---|
| 19 | </header>
|
---|
| 20 | <main>
|
---|
| 21 | <div class="content">
|
---|
| 22 |
|
---|
| 23 |
|
---|
| 24 | <!-- Page content -->
|
---|
| 25 | <div class="header-one">
|
---|
| 26 | </div>
|
---|
| 27 | <div class="centered">
|
---|
| 28 |
|
---|
| 29 | <table class="table table-bordered table-light bg-light table-striped" style="font-size:1.8rem;">
|
---|
| 30 | <div class="table-responsive-xl col mb-3">
|
---|
| 31 | <div class="row">
|
---|
| 32 | </div>
|
---|
| 33 | <thead>
|
---|
| 34 | <tr>
|
---|
| 35 | <td>Screening Date</td>
|
---|
| 36 | <td>Starting</td>
|
---|
| 37 | <td>Ending</td>
|
---|
| 38 | <td>Type</td>
|
---|
| 39 | <td>Price</td>
|
---|
| 40 | <td>Movie Name</td>
|
---|
| 41 | </tr>
|
---|
| 42 | </thead>
|
---|
| 43 | <tbody>
|
---|
| 44 | <tr th:each="moviegoer : ${moviegoer}">
|
---|
| 45 | <td th:text="${moviegoer.getProjection_screening_date()} "/>
|
---|
| 46 | <td th:text="${moviegoer.getProjection_movie_start()}"/>
|
---|
| 47 | <td th:text="${moviegoer.getProjection_movie_end()} "/>
|
---|
| 48 | <td th:text="${moviegoer.getProjection_type()} "/>
|
---|
| 49 | <td th:text="${moviegoer.getProjection_price()} "/>
|
---|
| 50 | <td th:text="${moviegoer.movie.getMovie_name()} "/>
|
---|
| 51 | <!--<td th:text="${#calendars.format()}">July 11, 2012 2:17:16 PM CDT</td>-->
|
---|
| 52 | </tr>
|
---|
| 53 | </tbody>
|
---|
| 54 | </div>
|
---|
| 55 | </table>
|
---|
| 56 | </div>
|
---|
| 57 | </div>
|
---|
| 58 | </main>
|
---|
| 59 | <!-- Footer -->
|
---|
| 60 | </body>
|
---|
| 61 | </html>
|
---|
| 62 | </div>
|
---|
| 63 |
|
---|
| 64 |
|
---|
| 65 |
|
---|
| 66 |
|
---|
| 67 |
|
---|