Changeset 967b414 in Git for src/main/resources/templates/moviesListPaged.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/moviesListPaged.html
r0226942 r967b414 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>
Note:
See TracChangeset
for help on using the changeset viewer.