diff options
author | Vitaly Takmazov | 2016-12-13 23:21:00 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2016-12-13 23:21:00 +0300 |
commit | 29a503b1762bf201c5e1f4b48a447871dfc1dbb6 (patch) | |
tree | d1366ab494866a00345e1c5d19aa2ae97174db61 /juick-spring-www/src/main/webapp/WEB-INF/templates | |
parent | 402b713e331c6e949005527bf9f733f5b63067f8 (diff) |
juick-spring-www: fix templates logic
Diffstat (limited to 'juick-spring-www/src/main/webapp/WEB-INF/templates')
-rw-r--r-- | juick-spring-www/src/main/webapp/WEB-INF/templates/views/partial/blog_messages.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/juick-spring-www/src/main/webapp/WEB-INF/templates/views/partial/blog_messages.html b/juick-spring-www/src/main/webapp/WEB-INF/templates/views/partial/blog_messages.html index b444acc2..2bf0e627 100644 --- a/juick-spring-www/src/main/webapp/WEB-INF/templates/views/partial/blog_messages.html +++ b/juick-spring-www/src/main/webapp/WEB-INF/templates/views/partial/blog_messages.html @@ -25,15 +25,15 @@ <p th:utext="${msg.getText()}">Lorem ipsum</p> <div class="irbr" th:if="${msg.getAttachmentType() != null}"></div> <nav class="l"> - <th:block th:switch="${visitor.getUid()}"> - <a th:case="0" class="a-login" th:href="|/${msg.getMid()}/|">Рекомендовать</a> - <a th:case="*" class="a-like" th:href="|/post?body=!+%23${msg.getMid()}/|">Рекомендовать</a> + <th:block th:switch="${#authorization.expression('isAuthenticated()')}"> + <a th:case="false" class="a-login" th:href="|/${msg.getMid()}/|">Рекомендовать</a> + <a th:case="true" class="a-like" th:href="|/post?body=!+%23${msg.getMid()}/|">Рекомендовать</a> </th:block> - <a th:if="${visitor.getUid() == 0 && !msg.ReadOnly}" class="a-login" th:href="|/${msg.getMid()}/|">Комментировать</a> - <a th:if="${visitor.getUid() > 0 && (!msg.ReadOnly || visitor.getUid() == msg.getUser().getUid())}" + <a th:if="${#authorization.expression('isAuthenticated()') == false && !msg.ReadOnly}" class="a-login" th:href="|/${msg.getMid()}/|">Комментировать</a> + <a th:if="${#authorization.expression('isAuthenticated()') == true && !msg.ReadOnly}" class="a-comment" th:href="|/${msg.getMid()}/|">Комментировать</a> - <th:block th:if="${visitor.getUid() == 3694}"> + <th:block th:if="${#authorization.expression('hasRole(''ROLE_ADMIN'')')}"> <a href="#" class="a-popular-plus">+</a> <a href="#" class="a-popular-minus">-</a> <a href="#" class="a-popular-delete">x</a> |