Changeset 967b414 in Git for src/main/resources/templates/movieShow.html
- Timestamp:
- 02/09/22 03:21:13 (3 years ago)
- Branches:
- main
- Children:
- 6f91f99
- Parents:
- 0226942 (diff), 3fe36de (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - git-author:
- Mato-77 <56981531+Mato-77@…> (02/09/22 03:21:13)
- git-committer:
- GitHub <noreply@…> (02/09/22 03:21:13)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/templates/movieShow.html
r0226942 r967b414 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>
Note:
See TracChangeset
for help on using the changeset viewer.