Changeset 3fe36de in Git for src/main/resources/templates
- Timestamp:
- 02/09/22 03:14:08 (3 years ago)
- Branches:
- main
- Children:
- 967b414
- Parents:
- c02189f
- Location:
- src/main/resources/templates
- Files:
-
- 1 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/templates/discussion.html
rc02189f r3fe36de 19 19 <br> 20 20 <h6 style="width: 60%; float:left;"> 21 <a th:href="@{'/profiles/{id}' (id=${disc.getUser().getUserId()})}" > 21 22 <span th:text="${'Поставено од: '+disc.getUser().getUsername()}"></span> 23 </a> 22 24 <span th:text="${', на датум '+ disc.getDate()}"></span> 23 25 <br> … … 48 50 <td th:text="${reply.getText()}"></td> 49 51 <td th:text="${reply.getDate()}"></td> 50 <td th:text="${reply.getUser().getUsername()}"></td> 52 <td > 53 <a th:href="@{'/profiles/{id}' (id=${reply.getUser().getUserId()})}" th:text="${reply.getUser().getUsername()}"></a> 54 </td> 51 55 <td th:if="${reply.getUser().equals(user)}"><a class="btn btn-warning" th:href="@{'/replies/edit/{discussionId}/{replyId}' (discussionId=${disc.getDiscussionId()},replyId=${reply.getReplyId()})}">Промени</a> </td> 52 56 <td th:if="${reply.getUser().equals(user)}"><a class="btn btn-danger button-delete-reply" th:reply-id="${reply.getReplyId()}" th:dicsussion-id="${disc.getDiscussionId()}">Избриши</a> </td> -
src/main/resources/templates/discussionsList.html
rc02189f r3fe36de 1 1 <div xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.w3.org/1999/xhtml"> 2 2 <div class="container mb-4"> 3 <a sec:authorize="isAuthenticated()" th:href="@{/discussions/add}" >Додади нова дискусија</a>3 <a sec:authorize="isAuthenticated()" th:href="@{/discussions/add}" class="btn btn-secondary">Додади нова дискусија</a> 4 4 </div> 5 5 <div class="container mb-4"> -
src/main/resources/templates/movieShow.html
rc02189f r3fe36de 78 78 <div th:each="rating: ${movie.getRates()}" style="margin-bottom: 10px; border: 2px solid gray; border-radius: 10px; background-color: lightblue; padding: 10px; border-radius: 10px; min-height: 130px;"> 79 79 <div style="width: 60%; float:left;"> 80 <a th:href="@{'/profiles/{id}' (id=${rating.getUser().getUserId()})}"> 81 <h4 th:text="${'Oд: '+rating.getUser().getName() + ' ' + rating.getUser().getSurname()}"> </h4> 82 </a> 80 83 <p th:text="${rating.getReason()}" style="text-align: justify"></p> 81 84 </div> … … 93 96 <div th:each="liked: ${movie.getLikes()}" style="margin-bottom: 10px; border: 2px solid gray; border-radius: 10px; background-color: lightblue; padding: 10px; border-radius: 10px; min-height: 60px;"> 94 97 <div style="width: 100%; float:left;"> 95 <h3 style="text-align: center"> 96 <span th:text="${liked.getUser().getName() + ' ' + liked.getUser().getSurname()}"></span> 97 <span style="color: green; font-size: 100%" >✔</span> 98 </h3> 98 <a th:href="@{'/profiles/{id}' (id=${liked.getUser().getUserId()})}" > 99 <h3 style="text-align: center"> 100 <span th:text="${liked.getUser().getName() + ' ' + liked.getUser().getSurname()}"></span> 101 <span style="color: green; font-size: 100%" >✔</span> 102 </h3> 103 </a> 99 104 </div> 100 105 </div> -
src/main/resources/templates/moviesListPaged.html
rc02189f r3fe36de 30 30 31 31 <div class="container mb-4"> 32 <a sec:authorize="isAuthenticated()" th:href="@{/movies/add}" >Додади нов филм</a>32 <a sec:authorize="isAuthenticated()" th:href="@{/movies/add}" class="btn btn-secondary">Додади нов филм</a> 33 33 </div> 34 34 … … 46 46 </span> 47 47 <th:block sec:authorize="isAuthenticated()"> 48 < a class="bottom-heart btn btn-success button-add-favourite-list" th:movie-id="${movie.getMovieId()}" th:user-id="${user.getUserId()}" th:if="${!likedMovies.contains(movie)}">❤</a>49 < a class="bottom-heart btn btn-danger button-remove-favourite-list" th:movie-id="${movie.getMovieId()}" th:user-id="${user.getUserId()}" th:if="${likedMovies.contains(movie)}">💔</a>48 <button class="bottom-heart btn btn-success button-add-favourite-list" th:movie-id="${movie.getMovieId()}" th:user-id="${user.getUserId()}" th:if="${!likedMovies.contains(movie)}">❤</button> 49 <button class="bottom-heart btn btn-danger button-remove-favourite-list" th:movie-id="${movie.getMovieId()}" th:user-id="${user.getUserId()}" th:if="${likedMovies.contains(movie)}">💔</button> 50 50 </th:block> 51 51 </div> -
src/main/resources/templates/personShow.html
rc02189f r3fe36de 5 5 <h1 th:text="${person.getName() + ' ' + person.getSurname()}" style="text-align: center; padding:10px; background-color: rgba(64,64,64,0.5); color:white; border-radius: 10px 0px"></h1> 6 6 <hr> 7 <h3 th:text="${'Роден на: ' + person.getDateFormatted()}"></h3>7 <h3 th:text="${'Роден/а на: ' + person.getDateFormatted()}"></h3> 8 8 <div style="background-color: rgba(200,200,200,0.5); border-radius: 10px; padding:15px; "> 9 9 <h3>Краток Опис:</h3> … … 24 24 <li th:each="movie: ${person.getMovieActors()}" ><a th:text="${movie.getMovie().getTitle()}" th:href="@{'/movies/{id}' (id=${movie.getMovie().getMovieId()})}" ></a></li> 25 25 </ul> 26 </div> 26 </div><br> 27 <ul style="list-style-type: none; width: 100%; margin: auto" id="buttons-person"> 28 <li><a class="btn btn-primary" th:href="@{'discussions/all/{id}?type=P' (id=${person.getPersonId()})}" >Прегледај дискусии</a></li> 29 <th:block sec:authorize="isAuthenticated()"> 30 <li><a class="btn btn-secondary button-add-grade-person" th:person-id="${person.getPersonId()}" th:if="${!person.hasGradeFromUser(user)}">Остави оценка</a></li> 31 <li><a class="btn btn-secondary button-add-grade-person" th:person-id="${person.getPersonId()}" th:if="${person.hasGradeFromUser(user)}">Промени оценка</a></li> 32 <li><a class="btn btn-warning" th:href="@{'persons/edit/{personId}' (personId = ${person.getPersonId()})}">Промени</a></li> 33 <li><a class="btn btn-danger button-delete-actor" th:person-id="${person.getPersonId()}">Избриши</a></li> 34 </th:block> 35 </ul> 27 36 </div> 28 37 <div style="width: 30%; margin-left: 10px; padding:20px; border-left: 3px solid black; border-radius: 10px; float:right"> … … 39 48 <div th:each="rating: ${person.getPersonRates()}" style="margin-bottom: 10px; border: 2px solid gray; border-radius: 10px; background-color: lightblue; padding: 10px; border-radius: 10px; min-height: 130px;"> 40 49 <div style="width: 60%; float:left;"> 50 <a th:href="@{'/profiles/{id}' (id=${rating.getUser().getUserId()})}"> 51 <h4 th:text="${'Oд: '+rating.getUser().getName() + ' ' + rating.getUser().getSurname()}"> </h4> 52 </a> 41 53 <p th:text="${rating.getReason()}" style="text-align: justify"></p> 42 54 </div> -
src/main/resources/templates/personsList.html
rc02189f r3fe36de 1 1 <div xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.w3.org/1999/xhtml"> 2 2 3 <div >4 <a sec:authorize="isAuthenticated()" th:href="@{'persons/add'}" >Додади актер или режисер</a>3 <div style="width: 70%; margin: auto;"> 4 <a sec:authorize="isAuthenticated()" th:href="@{'persons/add'}" class="btn btn-secondary">Додади актер или режисер</a> 5 5 </div> 6 6 <div class="container mb-4"> … … 47 47 <td> 48 48 <a class="btn btn-secondary button-add-grade-person" th:person-id="${person.getPersonId()}">Остави оценка</a> 49 50 49 </td> 51 50 <td> -
src/main/resources/templates/template.html
rc02189f r3fe36de 16 16 </head> 17 17 <body> 18 <section class="jumbotron text-center" style="background: url('/img/cover.jpg') center; background-repeat: no-repeat; background-size: 100% auto; height: 280px; margin-bottom: 0px "> 19 <div class="container" > 20 <h1 class="jumbotron-heading" style="z-index: -1"></h1> 21 </div> 22 </section> 18 <a href="/movies"> 19 20 <section class="jumbotron text-center" style="background: url('/img/cover.jpg') center; background-repeat: no-repeat; background-size: 100% auto; height: 280px; margin-bottom: 0px "> 21 <div class="container" > 22 <h1 class="jumbotron-heading" style="z-index: -1"></h1> 23 </div> 24 </section> 25 </a> 23 26 24 27 <header th:replace="fragments/header"></header>
Note:
See TracChangeset
for help on using the changeset viewer.