Changeset 8f1b7e9 in Git for src/main/resources
- Timestamp:
- 02/10/22 13:28:00 (3 years ago)
- Branches:
- main
- Children:
- 980eeda
- Parents:
- 6f91f99
- Location:
- src/main/resources/templates
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/templates/discussion.html
r6f91f99 r8f1b7e9 15 15 </span> 16 16 <span>Број на допаѓања:</span> 17 <span th:text="${ likes}" id="likes_count"></span>17 <span th:text="${disc.getLikes()}" id="likes_count"></span> 18 18 </h4> 19 19 <br> -
src/main/resources/templates/discussionsList.html
r6f91f99 r8f1b7e9 31 31 <a th:text="${disc.getTitle()}" th:href="@{'/discussions/{id}' (id=${disc.getDiscussionId()})}"></a> 32 32 </td> 33 <td th:text="${disc.getLikes() }"class="likes_count">33 <td th:text="${disc.getLikes() != null ? disc.getLikes() : 0}" class="likes_count"> 34 34 </td> 35 35 <td th:text="${disc.getDate()}"></td>
Note:
See TracChangeset
for help on using the changeset viewer.