update Search page: adding links to author

This commit is contained in:
Dmitry Isaenko 2024-01-11 21:55:59 +03:00
parent 448edad14c
commit 7c0f3218fa

View file

@ -21,15 +21,15 @@
<h3>Titles</h3> <h3>Titles</h3>
<div th:each="book : ${books}"> <div th:each="book : ${books}">
<a th:href="${'/book/' + book.id}"> <a th:href="${'/book/' + book.id}">
<span th:text="${book.title}"></span> <span class="book_title" th:text="${book.title}"></span>
</a> </a>
<br /> <br />
<div th:if="${book.series} != ''" th:text="${'Series: ' + book.series}"> <div th:if="${book.series} != ''" th:text="${'Series: ' + book.series}">
<br /> <br />
</div> </div>
<span th:if="${#lists.size(book.authors)} == 1" th:text="${book.authors[0].authorName}"></span> <a th:if="${#lists.size(book.authors)} == 1" th:href="${'/author/' + book.authors[0].id}" th:text="${book.authors[0].authorName}"></a>
<span th:if="${#lists.size(book.authors)} > 1" th:each="author : ${book.authors}" > <span th:if="${#lists.size(book.authors)} > 1" th:each="author : ${book.authors}" >
<span th:text="${author.authorName} + ', '"></span> <a th:href="${'/author/' + author.id}" th:text="${author.authorName}"></a>,
</span> </span>
<br /> <br />
<a th:href="${'/download/?container=' + book.container + '&file=' + book.fsFileName}" <a th:href="${'/download/?container=' + book.container + '&file=' + book.fsFileName}"
@ -43,17 +43,17 @@
<div th:if="${series} != null"> <div th:if="${series} != null">
<hr> <hr>
<h3>Series</h3> <h3>Series</h3>
<div th:each="book : ${series}"> <div th:each="book : ${books}">
<a th:href="${'/book/' + book.id}"> <a th:href="${'/book/' + book.id}">
<span th:text="${book.title}"></span> <span class="book_title" th:text="${book.title}"></span>
</a> </a>
<br /> <br />
<div th:if="${book.series} != ''" th:text="${'Series: ' + book.series}"> <div th:if="${book.series} != ''" th:text="${'Series: ' + book.series}">
<br /> <br />
</div> </div>
<span th:if="${#lists.size(book.authors)} == 1" th:text="${book.authors[0].authorName}"></span> <a th:if="${#lists.size(book.authors)} == 1" th:href="${'/author/' + book.authors[0].id}" th:text="${book.authors[0].authorName}"></a>
<span th:if="${#lists.size(book.authors)} > 1" th:each="author : ${book.authors}" > <span th:if="${#lists.size(book.authors)} > 1" th:each="author : ${book.authors}" >
<span th:text="${author.authorName} + ', '"></span> <a th:href="${'/author/' + author.id}" th:text="${author.authorName}"></a>,
</span> </span>
<br /> <br />
<a th:href="${'/download/?container=' + book.container + '&file=' + book.fsFileName}" <a th:href="${'/download/?container=' + book.container + '&file=' + book.fsFileName}"