Changeset 3fe36de in Git for src/main/resources/templates/discussion.html
- Timestamp:
- 02/09/22 03:14:08 (3 years ago)
- Branches:
- main
- Children:
- 967b414
- Parents:
- c02189f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/templates/discussion.html
rc02189f r3fe36de 19 19 <br> 20 20 <h6 style="width: 60%; float:left;"> 21 <a th:href="@{'/profiles/{id}' (id=${disc.getUser().getUserId()})}" > 21 22 <span th:text="${'Поставено од: '+disc.getUser().getUsername()}"></span> 23 </a> 22 24 <span th:text="${', на датум '+ disc.getDate()}"></span> 23 25 <br> … … 48 50 <td th:text="${reply.getText()}"></td> 49 51 <td th:text="${reply.getDate()}"></td> 50 <td th:text="${reply.getUser().getUsername()}"></td> 52 <td > 53 <a th:href="@{'/profiles/{id}' (id=${reply.getUser().getUserId()})}" th:text="${reply.getUser().getUsername()}"></a> 54 </td> 51 55 <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> 52 56 <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>
Note:
See TracChangeset
for help on using the changeset viewer.