source: source/MovieZilla-master/src/main/resources/templates/movies.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: 3.9 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>Movies</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/styleMovies.css}"/>
11</head>
12
13<body>
14<div class="navbar">
15<!-- <header th:replace="fragments/header.html" >-->
16<!--&lt;!&ndash; <a href="/home"><img class="logo" th:src="@{../images/LOGOPNG2.png}" alt="logo"></a>&ndash;&gt;-->
17<!--&lt;!&ndash; <ul class="nav_links">&ndash;&gt;-->
18<!--&lt;!&ndash; <li><a href="/movies">MOVIES</a></li>&ndash;&gt;-->
19<!--&lt;!&ndash; <li><a href="/projections">PROJECTIONS</a></li>&ndash;&gt;-->
20<!--&lt;!&ndash; <li><a href="/auditoriums">AUDITORIUMS</a></li>&ndash;&gt;-->
21
22<!--&lt;!&ndash; </ul>&ndash;&gt;-->
23
24<!--&lt;!&ndash; <div class="right">&ndash;&gt;-->
25<!--&lt;!&ndash; <li><a class="reg" href="/login">LOGIN</a></li>&ndash;&gt;-->
26<!--&lt;!&ndash; <li><a class="log" style="color: red" href="/register">REGISTER</a></li>&ndash;&gt;-->
27<!--&lt;!&ndash; </div>&ndash;&gt;-->
28<!-- </header>-->
29 <main>
30 <div class="container-main">
31 <div class="h1Combined">
32 <h1 style="color:white">Movie <h1 style="color:red">Zilla</h1></h1>
33 </div>
34 <div class="content">
35 <!-- Page content -->
36 <div class="header-one">
37 </div>
38 <div class="centered">
39 <table>
40 <thead style="border-bottom: 1px solid rgba(255, 51, 51,0.8)">
41 <tr>
42 <td style="border-right: 1px solid rgba(255, 51, 51,0.8)">Name</td>
43 <td style="border-right: 1px solid rgba(255, 51, 51,0.8)">Genre Name</td>
44 <td style="border-right: 1px solid rgba(255, 51, 51,0.8)">Age Category</td>
45 <td style="border-right: 1px solid rgba(255, 51, 51,0.8)">Time Duration</td>
46 <td style="border-right: 1px solid rgba(255, 51, 51,0.8)">Movie Cast</td>
47 <td>Film Director</td>
48 </tr>
49 </thead>
50 <tbody>
51 <tr th:each="movies : ${movie}">
52 <td th:text="${movies.getMovieGenreKey().getMovie().getMovie_name()}" />
53 <td th:text="${movies.getMovieGenreKey().getGenre().getGenre_name()}"/>
54 <td th:text="${movies.getMovieGenreKey().getMovie().getMovie_age_category()} "/>
55 <td th:text="${movies.getMovieGenreKey().getMovie().getMovie_time_duration()} "/>
56 <td th:text="${movies.getMovieGenreKey().getMovie().getMovie_cast()} "/>
57 <td th:text="${movies.getMovieGenreKey().getMovie().getMovie_film_director()} "/>
58 <td class="text-right">
59 <form th:action="@{/movie/projections/detailed-preview/}">
60 <button class="btn2" type="submit" th:name="movie_id" th:value="${movies.getMovieGenreKey().getMovie().getMovie_id()}">View Projections</button>
61 </form>
62 </th:block>
63 </td>
64 </tr>
65 </tbody>
66 </table>
67 </div>
68 </div>
69 <!--<a class="btn" href="/projections">Projections</a>-->
70 </div>
71 </main>
72 <!--<footer th:replace="fragments/footer"/>-->
73</div>
74</body>
75
76
77
78
79
Note: See TracBrowser for help on using the repository browser.