Changeset b8a8d06 for src/main/resources/templates
- Timestamp:
- 10/16/21 15:07:33 (3 years ago)
- Branches:
- master
- Children:
- 2d8c0e7
- Parents:
- 7888b17
- Location:
- src/main/resources/templates
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/templates/post.html
r7888b17 rb8a8d06 77 77 Report 78 78 </button> 79 <div id="error" class="text-danger" hidden>Donation error</div> 79 80 80 81 <!-- Modal --> … … 197 198 </div> 198 199 <script src="/js/bootstrap.min.js"></script> 200 <script> 201 location.search 202 .substr(1) 203 .split("&") 204 .forEach(function (item) { 205 tmp = item.split("="); 206 if (tmp[0] === "error") { 207 document.getElementById("error").hidden = false; 208 } 209 }); 210 </script> 199 211 <script th:inline="javascript" th:unless="${notFound}" sec:authorize="isAuthenticated()"> 200 212 /*<![CDATA[*/ -
src/main/resources/templates/reportPost.html
r7888b17 rb8a8d06 71 71 72 72 <div th:if="${report}"> 73 <a class="btn btn-success" th:href="@{/moderator/dismiss(postid=${post.id})}">Dismiss </a>73 <a class="btn btn-success" th:href="@{/moderator/dismiss(postid=${post.id})}">Dismiss reports</a> 74 74 <button type="button" class="btn btn-danger" data-bs-toggle="modal" 75 75 data-bs-target="#staticBackdrop"> -
src/main/resources/templates/upload.html
r7888b17 rb8a8d06 16 16 <br/> 17 17 <div class="row"> 18 <div th:if="${error}" class="text-danger">Error uploading post</div> 18 19 <div class="col-md-4" id="left"> 19 20 <form th:action="@{/newPost}" method="post" id="myForm" enctype="multipart/form-data" class="row g-3">
Note:
See TracChangeset
for help on using the changeset viewer.