18 lines
688 B
HTML
18 lines
688 B
HTML
<!DOCTYPE HTML>
|
|
<html xmlns:th="http://www.thymeleaf.org">
|
|
<head th:fragment="headerfiles">
|
|
<meta charset="UTF-8"/>
|
|
</head>
|
|
<body>
|
|
<div th:fragment="projectLine (project)" class="row text-left project-row" style="background-color: white;">
|
|
<div class="col">
|
|
<span th:replace="projects/fragments/projectStatusFragment :: projectStatus(projectStatus=${project.status})"/>
|
|
<a th:href="@{'project?id='+${project.id}}">
|
|
<span class="h6" th:text="${project.title}"/>
|
|
<span class="text-muted" th:text="${project.description}"/>
|
|
</a>
|
|
<input class="id-class" type="hidden" th:value="${project.id}"/>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |