diff options
author | Vitaly Takmazov | 2017-04-07 10:29:52 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2017-04-07 10:29:52 +0300 |
commit | 9820abe11c0c037f50bb2f7ddbb0bd19646264dc (patch) | |
tree | 5a33901fc294546c40b0cdbc65640b041e4c694e /juick-spring-www/src/main/webapp/WEB-INF/templates/views/partial/thread_message.html | |
parent | 6951e2ad47ed4db3dc7d0b08aeadeb09bc3b994d (diff) |
juick-www: merge juick-spring-www i18n, drop thymeleaf
Diffstat (limited to 'juick-spring-www/src/main/webapp/WEB-INF/templates/views/partial/thread_message.html')
-rw-r--r-- | juick-spring-www/src/main/webapp/WEB-INF/templates/views/partial/thread_message.html | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/juick-spring-www/src/main/webapp/WEB-INF/templates/views/partial/thread_message.html b/juick-spring-www/src/main/webapp/WEB-INF/templates/views/partial/thread_message.html deleted file mode 100644 index 159eebf5..00000000 --- a/juick-spring-www/src/main/webapp/WEB-INF/templates/views/partial/thread_message.html +++ /dev/null @@ -1,57 +0,0 @@ -<ul xmlns:th="http://www.thymeleaf.org"> - <li th:id="|msg-${msg.getMid()}|" th:data-mid="${msg.getMid()}" class="msg msgthread"> - <div class="msg-cont"> - <div class="msg-menu"><a href="#"></a></div> - <div class="msg-ts" th:text="${msg.getDate()}">01.01.1970</div> - <div class="msg-avatar"> - <a th:href="|/${msg.getUser().getName()}/|"> - <img th:src="|//i.juick.com/a/${msg.getUser().getUid()}.png|" - th:alt="${msg.getUser().getName()}"/> - </a> - </div> - <div class="msg-header"> - @<a th:href="|/${msg.getUser().getName()}/|" th:text="${msg.getUser().getName()}">ugnich</a>: - <th:block th:text="${tagsStr}"/> - </div> - <div class="msg-txt" th:utext="${msg.getText()}"> - Lorem ipsum - </div> - <div class="msg-media" th:if="${msg.getAttachmentType() != null}"> - <a href="|//i.juick.com/p/${msg.getMid()}.${msg.getAttachmentType()}|"> - <img src="|//i.juick.com/photos-512/${msg.getMid()}.${msg.getAttachmentType()}|"/> - </a> - </div> - <form th:if="${msg.VisitorCanComment}" action="/comment" method="POST" enctype="multipart/form-data"> - <input type="hidden" name="mid" th:value="${msg.getMid()}"/> - <div class="msg-comment"> - <div class="ta-wrapper"> - <textarea name="body" rows="1" class="reply" placeholder="Написать комментарий"></textarea> - </div> - </div> - </form> - <div class="msg-recomms" th:text="|Рекомендовали (${recommsCount}): ${recomms}|">Recommended(1): @ugnich</div> - </div> - </li> - <li id="mtoolbar"> - <ul> - <li><a th:href="|/${msg.getMid()}|"> - <div style="background-position: -64px 0"></div> - <th:block th:text="${msg.getMid()}"></th:block> - </a></li> - <th:block th:if="${#authorization.expression('isAuthenticated()')}"> - <li th:if="${isSubscribed}"><a th:href="|/post?body=U+%23${msg.getMid()}|"> - <div style="background-position: -48px 0"></div> - Подписан</a></li> - <li th:if="${isSubscribed == false}"><a th:href="|/post?body=S+%23${msg.getMid()}|"> - <div style="background-position: -16px 0"></div> - Подписаться</a></li> - <li th:if="${visitorInBL == false}"><a th:href="|/post?body=%21+%23${msg.getMid()}|"> - <div style="background-position: -32px 0"></div> - Рекомендовать</a></li> - <li th:if="${isOwnMessage}"><a th:href="|/post?body=D+%23${msg.getMid()}|"> - <div style="background-position: 0"></div> - Удалить</a></li> - </th:block> - </ul> - </li> -</ul>
\ No newline at end of file |