Changes in / [967b414:0226942] in Git
- Files:
-
- 2 deleted
- 32 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/com/wediscussmovies/project/configuration/SecurityConfig.java
r967b414 r0226942 29 29 http.csrf().disable() 30 30 .authorizeRequests() 31 .antMatchers("/movies","/movies/**/","/actors","/persons/**/","/directors","/discussions","/ profiles/**","/discussions/**/","/discussions/all/**/","/replies","/register","/genres", "/css/**","/img/**", "/js/**").permitAll()31 .antMatchers("/movies","/movies/**/","/actors","/persons/**/","/directors","/discussions","/discussions/**/","/discussions/all/**/","/replies","/register","/genres", "/css/**","/img/**", "/js/**").permitAll() 32 32 .anyRequest() 33 33 .authenticated() -
src/main/java/com/wediscussmovies/project/model/Movie.java
r967b414 r0226942 95 95 96 96 97 public String getShortTitle(){ 98 int to = 20; 99 if (title.length() < to) 100 to = title.length(); 101 if(to<20) 102 return title; 103 return title.substring(0, to) + "..."; 104 } 97 105 98 106 99 -
src/main/java/com/wediscussmovies/project/model/Person.java
r967b414 r0226942 92 92 } 93 93 94 public boolean hasGradeFromUser(User user){95 for(PersonRates p: personRates){96 if(p.getUser().getUserId() == user.getUserId())97 return true;98 }99 return false;100 }101 102 94 } -
src/main/java/com/wediscussmovies/project/service/UserService.java
r967b414 r0226942 10 10 User findByUsername(String username); 11 11 User register(String email, String username, String password, String confirmPassword, String name, String surname); 12 13 User findById(Integer id);14 12 } -
src/main/java/com/wediscussmovies/project/service/impl/UserServiceImpl.java
r967b414 r0226942 48 48 49 49 @Override 50 public User findById(Integer id) {51 return userRepository.findById(id).orElseThrow(() -> new UserNotExistException(id.toString()));52 }53 54 @Override55 50 public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException { 56 51 return this.findByUsername(username); -
src/main/java/com/wediscussmovies/project/web/controller/PersonController.java
r967b414 r0226942 55 55 //Error handling, could be null!!!!!!!!! 56 56 model.addAttribute("person", person); 57 addModelPropertiesForUser(model); 57 58 58 model.addAttribute("contentTemplate", "personShow"); 59 59 return "template"; -
src/main/java/com/wediscussmovies/project/web/controller/UsersController.java
r967b414 r0226942 11 11 import org.springframework.stereotype.Controller; 12 12 import org.springframework.ui.Model; 13 import org.springframework.web.bind.annotation.*; 13 import org.springframework.web.bind.annotation.GetMapping; 14 import org.springframework.web.bind.annotation.PostMapping; 15 import org.springframework.web.bind.annotation.RequestMapping; 16 import org.springframework.web.bind.annotation.RequestParam; 14 17 15 18 import java.util.ArrayList; … … 39 42 return "redirect:/register?error=" + exception.getMessage(); 40 43 } 41 }42 @GetMapping("/profiles/{id}")43 public String getProfilePage(@PathVariable Integer id, Model model){44 model.addAttribute("user",userService.findById(id));45 model.addAttribute("contentTemplate","usersShow");46 return "template";47 44 } 48 45 @GetMapping("/register") -
src/main/resources/static/css/shared.css
r967b414 r0226942 164 164 .genres-listing ul li{ 165 165 background-color: rgba(192,128,128,0.7); 166 text-decoration: none ;166 text-decoration: none !important; 167 167 } 168 168 … … 214 214 display: none; 215 215 } 216 217 .user-text{218 font-size: 95%;219 text-decoration: none !important;220 text-decoration-color: transparent;221 text-align: justify;222 }223 224 .user-text-small{225 font-size: 85%;226 text-decoration: none !important;227 text-decoration-color: transparent;228 text-align: justify;229 }230 231 232 .user-movies-list{233 margin: auto;234 margin-top: 20px;235 padding: 10px;236 width: 80%;237 background-color: rgba(52, 58, 64, 0.7);238 border-radius: 10px;239 transition: 200ms;240 margin-right: 15px;241 color: white;242 transition: 200ms;243 }244 245 .user-movies-list:hover{246 background-color: rgba(52, 58, 64, 1);247 }248 249 .user-movies-list ul{250 list-style-type: none;251 width: 99%;252 margin: auto;253 display: none;254 }255 256 .hidden-class{257 background-color: rgba(192,255,192,0.6);258 color: black;259 }260 261 .hidden-class:hover{262 background-color: rgba(128,255,128,1) !important;263 264 }265 266 .user-movies-list ul li{267 color:black;268 background-color: rgba(255,255,255,0.7);269 padding: 12px;270 font-size: 80%;271 width: 90%;272 text-align: center;273 margin: auto;274 transition: 200ms;275 border-radius: 10px;276 margin-bottom: 5px;277 text-decoration: none;278 float: left;279 }280 281 .user-movies-list hr{282 color: white;283 background-color: white;284 border-color: white;285 }286 287 288 .user-movies-list ul li:hover{289 background-color: rgba(255,255,255,1);290 }291 292 .rate-title{293 font-size: 130%;294 }295 296 #buttons-person{297 margin-top: 10px;298 }299 300 #buttons-person li{301 float: left;302 margin-right: 10px;303 } -
src/main/resources/static/js/sharedScript.js
r967b414 r0226942 88 88 else 89 89 $("#filters_div").fadeToggle(); 90 })91 92 $(".user-movies-list").on("click", function (){93 children = $(this).children()94 first = true95 for (let item of children){96 if(first){97 first = !first98 }99 else{100 $(item).fadeToggle();101 }102 }103 $(this).toggleClass("hidden-class")104 90 }) 105 91 -
src/main/resources/templates/discussion.html
r967b414 r0226942 19 19 <br> 20 20 <h6 style="width: 60%; float:left;"> 21 <a th:href="@{'/profiles/{id}' (id=${disc.getUser().getUserId()})}" >22 21 <span th:text="${'Поставено од: '+disc.getUser().getUsername()}"></span> 23 </a>24 22 <span th:text="${', на датум '+ disc.getDate()}"></span> 25 23 <br> … … 50 48 <td th:text="${reply.getText()}"></td> 51 49 <td th:text="${reply.getDate()}"></td> 52 <td > 53 <a th:href="@{'/profiles/{id}' (id=${reply.getUser().getUserId()})}" th:text="${reply.getUser().getUsername()}"></a> 54 </td> 50 <td th:text="${reply.getUser().getUsername()}"></td> 55 51 <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> 56 52 <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
r967b414 r0226942 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}" class="btn btn-secondary">Додади нова дискусија</a>3 <a sec:authorize="isAuthenticated()" th:href="@{/discussions/add}">Додади нова дискусија</a> 4 4 </div> 5 5 <div class="container mb-4"> -
src/main/resources/templates/movieShow.html
r967b414 r0226942 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>83 80 <p th:text="${rating.getReason()}" style="text-align: justify"></p> 84 81 </div> … … 96 93 <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;"> 97 94 <div style="width: 100%; float:left;"> 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> 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> 104 99 </div> 105 100 </div> -
src/main/resources/templates/moviesListPaged.html
r967b414 r0226942 30 30 31 31 <div class="container mb-4"> 32 <a sec:authorize="isAuthenticated()" th:href="@{/movies/add}" class="btn btn-secondary">Додади нов филм</a>32 <a sec:authorize="isAuthenticated()" th:href="@{/movies/add}">Додади нов филм</a> 33 33 </div> 34 34 … … 46 46 </span> 47 47 <th:block sec:authorize="isAuthenticated()"> 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>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> 50 50 </th:block> 51 51 </div> -
src/main/resources/templates/personShow.html
r967b414 r0226942 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><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> 26 </div> 36 27 </div> 37 28 <div style="width: 30%; margin-left: 10px; padding:20px; border-left: 3px solid black; border-radius: 10px; float:right"> … … 48 39 <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;"> 49 40 <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>53 41 <p th:text="${rating.getReason()}" style="text-align: justify"></p> 54 42 </div> -
src/main/resources/templates/personsList.html
r967b414 r0226942 1 1 <div xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.w3.org/1999/xhtml"> 2 2 3 <div style="width: 70%; margin: auto;">4 <a sec:authorize="isAuthenticated()" th:href="@{'persons/add'}" class="btn btn-secondary">Додади актер или режисер</a>3 <div> 4 <a sec:authorize="isAuthenticated()" th:href="@{'persons/add'}">Додади актер или режисер</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 49 50 </td> 50 51 <td> -
src/main/resources/templates/template.html
r967b414 r0226942 16 16 </head> 17 17 <body> 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> 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> 26 23 27 24 <header th:replace="fragments/header"></header> -
target/classes/static/css/shared.css
r967b414 r0226942 164 164 .genres-listing ul li{ 165 165 background-color: rgba(192,128,128,0.7); 166 text-decoration: none ;166 text-decoration: none !important; 167 167 } 168 168 … … 214 214 display: none; 215 215 } 216 217 .user-text{218 font-size: 95%;219 text-decoration: none !important;220 text-decoration-color: transparent;221 text-align: justify;222 }223 224 .user-text-small{225 font-size: 85%;226 text-decoration: none !important;227 text-decoration-color: transparent;228 text-align: justify;229 }230 231 232 .user-movies-list{233 margin: auto;234 margin-top: 20px;235 padding: 10px;236 width: 80%;237 background-color: rgba(52, 58, 64, 0.7);238 border-radius: 10px;239 transition: 200ms;240 margin-right: 15px;241 color: white;242 transition: 200ms;243 }244 245 .user-movies-list:hover{246 background-color: rgba(52, 58, 64, 1);247 }248 249 .user-movies-list ul{250 list-style-type: none;251 width: 99%;252 margin: auto;253 display: none;254 }255 256 .hidden-class{257 background-color: rgba(192,255,192,0.6);258 color: black;259 }260 261 .hidden-class:hover{262 background-color: rgba(128,255,128,1) !important;263 264 }265 266 .user-movies-list ul li{267 color:black;268 background-color: rgba(255,255,255,0.7);269 padding: 12px;270 font-size: 80%;271 width: 90%;272 text-align: center;273 margin: auto;274 transition: 200ms;275 border-radius: 10px;276 margin-bottom: 5px;277 text-decoration: none;278 float: left;279 }280 281 .user-movies-list hr{282 color: white;283 background-color: white;284 border-color: white;285 }286 287 288 .user-movies-list ul li:hover{289 background-color: rgba(255,255,255,1);290 }291 292 .rate-title{293 font-size: 130%;294 }295 296 #buttons-person{297 margin-top: 10px;298 }299 300 #buttons-person li{301 float: left;302 margin-right: 10px;303 } -
target/classes/static/js/sharedScript.js
r967b414 r0226942 88 88 else 89 89 $("#filters_div").fadeToggle(); 90 })91 92 $(".user-movies-list").on("click", function (){93 children = $(this).children()94 first = true95 for (let item of children){96 if(first){97 first = !first98 }99 else{100 $(item).fadeToggle();101 }102 }103 $(this).toggleClass("hidden-class")104 90 }) 105 91 -
target/classes/templates/discussion.html
r967b414 r0226942 19 19 <br> 20 20 <h6 style="width: 60%; float:left;"> 21 <a th:href="@{'/profiles/{id}' (id=${disc.getUser().getUserId()})}" >22 21 <span th:text="${'Поставено од: '+disc.getUser().getUsername()}"></span> 23 </a>24 22 <span th:text="${', на датум '+ disc.getDate()}"></span> 25 23 <br> … … 50 48 <td th:text="${reply.getText()}"></td> 51 49 <td th:text="${reply.getDate()}"></td> 52 <td > 53 <a th:href="@{'/profiles/{id}' (id=${reply.getUser().getUserId()})}" th:text="${reply.getUser().getUsername()}"></a> 54 </td> 50 <td th:text="${reply.getUser().getUsername()}"></td> 55 51 <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> 56 52 <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> -
target/classes/templates/discussionsList.html
r967b414 r0226942 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}" class="btn btn-secondary">Додади нова дискусија</a>3 <a sec:authorize="isAuthenticated()" th:href="@{/discussions/add}">Додади нова дискусија</a> 4 4 </div> 5 5 <div class="container mb-4"> -
target/classes/templates/movieShow.html
r967b414 r0226942 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>83 80 <p th:text="${rating.getReason()}" style="text-align: justify"></p> 84 81 </div> … … 96 93 <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;"> 97 94 <div style="width: 100%; float:left;"> 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> 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> 104 99 </div> 105 100 </div> -
target/classes/templates/moviesListPaged.html
r967b414 r0226942 30 30 31 31 <div class="container mb-4"> 32 <a sec:authorize="isAuthenticated()" th:href="@{/movies/add}" class="btn btn-secondary">Додади нов филм</a>32 <a sec:authorize="isAuthenticated()" th:href="@{/movies/add}">Додади нов филм</a> 33 33 </div> 34 34 … … 46 46 </span> 47 47 <th:block sec:authorize="isAuthenticated()"> 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>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> 50 50 </th:block> 51 51 </div> -
target/classes/templates/personShow.html
r967b414 r0226942 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><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> 26 </div> 36 27 </div> 37 28 <div style="width: 30%; margin-left: 10px; padding:20px; border-left: 3px solid black; border-radius: 10px; float:right"> … … 48 39 <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;"> 49 40 <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>53 41 <p th:text="${rating.getReason()}" style="text-align: justify"></p> 54 42 </div> -
target/classes/templates/personsList.html
r967b414 r0226942 1 1 <div xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.w3.org/1999/xhtml"> 2 2 3 <div style="width: 70%; margin: auto;">4 <a sec:authorize="isAuthenticated()" th:href="@{'persons/add'}" class="btn btn-secondary">Додади актер или режисер</a>3 <div> 4 <a sec:authorize="isAuthenticated()" th:href="@{'persons/add'}">Додади актер или режисер</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 49 50 </td> 50 51 <td> -
target/classes/templates/template.html
r967b414 r0226942 16 16 </head> 17 17 <body> 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> 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> 26 23 27 24 <header th:replace="fragments/header"></header>
Note:
See TracChangeset
for help on using the changeset viewer.