[f25e8dd] | 1 |
|
---|
[c02189f] | 2 | <div xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.w3.org/1999/xhtml" style="width: 70%; margin: auto">
|
---|
| 3 | <div style="clear: both; margin-bottom: 10px; display: inline-block">
|
---|
[f25e8dd] | 4 | <div style="width: 60%; margin-left: 10px; padding:20px; float:left">
|
---|
| 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 | <hr>
|
---|
[c02189f] | 7 | <h3 th:text="${'Роден на: ' + person.getDateFormatted()}"></h3>
|
---|
[f25e8dd] | 8 | <div style="background-color: rgba(200,200,200,0.5); border-radius: 10px; padding:15px; ">
|
---|
[c02189f] | 9 | <h3>Краток Опис:</h3>
|
---|
[f25e8dd] | 10 | <p th:text="${person.getDescription()}" style="text-align: justify"></p>
|
---|
| 11 | </div>
|
---|
| 12 |
|
---|
[c02189f] | 13 | <div th:if="${person.getType().toString().contains('D')}" class="person-movies-list">
|
---|
| 14 | <h3 >Режисирани филмови:</h3>
|
---|
| 15 | <hr>
|
---|
[f25e8dd] | 16 | <ul>
|
---|
[c02189f] | 17 | <li th:each="movie: ${person.getMovies()}"><a th:text="${movie.getTitle()}" th:href="@{'/movies/{id}' (id=${movie.getMovieId()})}" ></a></li>
|
---|
[f25e8dd] | 18 | </ul>
|
---|
| 19 | </div>
|
---|
[c02189f] | 20 | <div th:if="${person.getType().toString().contains('A')}" class="person-movies-list">
|
---|
| 21 | <h3 >Се појавува во филмовите:</h3>
|
---|
| 22 | <hr>
|
---|
[f25e8dd] | 23 | <ul>
|
---|
[c02189f] | 24 | <li th:each="movie: ${person.getMovieActors()}" ><a th:text="${movie.getMovie().getTitle()}" th:href="@{'/movies/{id}' (id=${movie.getMovie().getMovieId()})}" ></a></li>
|
---|
[f25e8dd] | 25 | </ul>
|
---|
| 26 | </div>
|
---|
| 27 | </div>
|
---|
[c02189f] | 28 | <div style="width: 30%; margin-left: 10px; padding:20px; border-left: 3px solid black; border-radius: 10px; float:right">
|
---|
[f25e8dd] | 29 | <img th:src="${person.getImageUrl()}" style="width: 90%; height: auto">
|
---|
| 30 | </div>
|
---|
| 31 | </div>
|
---|
[c02189f] | 32 | <br>
|
---|
| 33 | <div style="clear:both; display: inline-block; width: 100%; background-color: rgb(200,200,200); padding: 10px; border-radius: 5px">
|
---|
[3c0f9a9] | 34 | <h2>
|
---|
[c02189f] | 35 | <span>Бројот на оцени кои личноста ги има добиено:</span>
|
---|
| 36 | <span th:text="${person.getPersonRates().size()}"></span>
|
---|
[3c0f9a9] | 37 | </h2>
|
---|
| 38 | <hr>
|
---|
[c02189f] | 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;">
|
---|
[3c0f9a9] | 40 | <div style="width: 60%; float:left;">
|
---|
| 41 | <p th:text="${rating.getReason()}" style="text-align: justify"></p>
|
---|
| 42 | </div>
|
---|
| 43 | <div style="width: 30%; float:right; background-color: darkorange; border-radius: 10px 30px; color: whitesmoke; padding: 10px;">
|
---|
[c02189f] | 44 | <h2 style="text-align: center">Оценет со :</h2>
|
---|
| 45 | <p th:text="${rating.getStarsRated() + ' од 10'}" style="text-align: center"></p>
|
---|
[3c0f9a9] | 46 | </div>
|
---|
| 47 | </div>
|
---|
| 48 | </div>
|
---|
[c02189f] | 49 |
|
---|
[f25e8dd] | 50 | </div> |
---|