21 lines
748 B
HTML
21 lines
748 B
HTML
<!DOCTYPE HTML>
|
|
<html xmlns:th="http://www.thymeleaf.org">
|
|
<head th:fragment="headerfiles">
|
|
<meta charset="UTF-8"/>
|
|
</head>
|
|
<body>
|
|
<div th:fragment="grantDashboard (grant)" class="col-12 col-sm-12 col-md-12 col-lg-4 col-xl-3 dashboard-card">
|
|
<div class="row">
|
|
<div class="col-2">
|
|
<span th:replace="grants/fragments/grantStatusFragment :: grantStatus(grantStatus=${grant.status})"/>
|
|
</div>
|
|
<div class="col col-10 text-right">
|
|
<a th:href="'grant?id='+${grant.id}">
|
|
<h7 class="service-heading" th:text="${grant.title}"> title</h7>
|
|
</a>
|
|
<p class="text-muted" th:text="${grant.status.statusName}"> status</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |