source: source/MovieZilla-master/src/main/resources/templates/auditoriums.html@ fc7ec52

Last change on this file since fc7ec52 was fc7ec52, checked in by darkopopovski <darkopopovski39@…>, 22 months ago

all files

  • Property mode set to 100644
File size: 2.6 KB
Line 
1<!DOCTYPE html>
2<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
3<head>
4 <base href="${pageContext.request.contextPath}">
5 <meta charset="utf-8">
6 <meta http-equiv="X-UA-Compatible" content="IE=edge">
7 <title>Auditoriums</title>
8 <meta name="description" content="">
9 <meta name="viewport" content="width=device-width, initial-scale=1">
10 <link rel="stylesheet" type="text/css" th:href="@{../css/styleAuditoriums.css}"/>
11</head>
12
13
14<body>
15<div class="navbar">
16<!-- <header th:replace="fragments/header.html" >-->
17
18<!-- </header>-->
19 <main>
20 <div class="container-main">
21 <div class="h1Combined">
22 <h1 style="color:white;margin-left: 480px;">Movie <h1 style="color:red">Zilla</h1></h1>
23 </div>
24 <div class="content">
25 <!-- Page content -->
26 <div class="header-one">
27 </div>
28 <div class="centered">
29 <table style="border-collapse: collapse;
30 color: white;
31 font-size: 2.5rem;
32 background: rgba(0,0,0,0.4);
33 margin-left: 210px;
34 margin-top: 50px;">
35 <thead style="border-bottom: 1px solid rgba(255, 51, 51,0.8)">
36 <tr>
37 <td style="border-right: 1px solid rgba(255, 51, 51,0.8)">Auditorium Name</td>
38 <td style="border-right: 1px solid rgba(255, 51, 51,0.8)">Auditorium Capacity</td>
39 <td style="border-right: 1px solid rgba(255, 51, 51,0.8)">Firm Name</td>
40 <td style="border-right: 1px solid rgba(255, 51, 51,0.8)">Firm City</td>
41 <td>Firm Adress</td>
42 </tr>
43 </thead>
44 <tbody>
45 <tr th:each="auditorium : ${auditorium}">
46 <td th:text="${auditorium.getAuditorium_name()}"/>
47 <td th:text="${auditorium.getAuditorium_capacity()}"/>
48 <td th:text="${auditorium.getFirm().getFirm_name()}"/>
49 <td th:text="${auditorium.getFirm().getFirm_city()}"/>
50 <td th:text="${auditorium.getFirm().getFirm_adress()}"/>
51 </tr>
52 </tbody>
53 </table>
54 </div>
55 </div>
56 <!--<a class="btn" href="/projections">Projections</a>-->
57 </div>
58 </main>
59 <!--<footer th:replace="fragments/footer"/>-->
60</div>
61</body>
62
63
64
65
66
67
68
69
70
71
Note: See TracBrowser for help on using the repository browser.