source: src/main/resources/templates/reportedPosts.html@ ab49338

Last change on this file since ab49338 was ab49338, checked in by KostaFortumanov <kfortumanov@…>, 3 years ago

Dodadeno prijavuvanje na objavi

  • Property mode set to 100644
File size: 1.9 KB
Line 
1<!DOCTYPE html>
2<html lang="en" xmlns:th="http://www.w3.org/1999/xhtml">
3<head>
4 <meta charset="UTF-8"/>
5 <meta name="viewport" content="width=device-width, initial-scale=1"/>
6 <title>Album</title>
7 <!-- Bootstrap core CSS -->
8 <link href="/css/bootstrap.min.css" rel="stylesheet"/>
9</head>
10<body>
11<header th:replace="common/navbar :: navbar"></header>
12<hr class="dropdown-divider">
13<br/>
14<br/>
15<main>
16 <p th:if="${noPosts}">No posts</p>
17 <div th:unless="${noPosts}" class="album py-5 bg-light">
18 <div class="container">
19
20 <div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 g-3">
21 <div class="col" th:each="post : ${postList}">
22 <div class="card shadow-sm">
23 <img class="card-img" style="object-fit: contain" width="100%" height="225"
24 th:src="${post.donationPost.imagesPath[0]}">
25 <div class="card-body overflow-hidden">
26 <h4 th:text="${post.donationPost.title}" style="height: 60px"></h4>
27 <p class="card-text text-truncate" style="height: 45px" th:text="${post.donationPost.description}"></p>
28 <div class="d-flex justify-content-between align-items-center">
29 <div class="btn-group">
30 <a class="btn btn-sm btn-outline-secondary" th:href="@{/moderator/reportPost(postid=${post.id})}">Open</a>
31 </div>
32 <span class="text-muted">Date due: <small th:text="${post.donationPost.dateDue}"></small></span>
33 </div>
34 </div>
35 </div>
36 </div>
37 </div>
38 </div>
39 <hr class="ui-menu-divider" />
40 </div>
41
42</main>
43<script src="/js/bootstrap.min.js"></script>
44</body>
45</html>
Note: See TracBrowser for help on using the repository browser.