22 lines
789 B
HTML
22 lines
789 B
HTML
<!DOCTYPE HTML>
|
|
<html xmlns:th="http://www.thymeleaf.org">
|
|
<head th:fragment="headerfiles">
|
|
<meta charset="UTF-8"/>
|
|
</head>
|
|
<body>
|
|
<div class="row text-left task-row" style="background-color: white;">
|
|
<div class="col">
|
|
<span th:replace="students/fragments/taskStatusFragment"/>
|
|
<a th:href="@{'task?id='+ 1}">
|
|
<span class="h6" >Первая хадач</span>
|
|
<span class="text-muted">Курсовая работа</span>
|
|
</a>
|
|
<input class="id-class" type="hidden" th:value="1" />
|
|
<a class="remove-task pull-right d-none" th:href="@{'/students/delete/'+1}"
|
|
data-confirm="Удалить задачу?">
|
|
<i class="fa fa-trash" aria-hidden="true"></i>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |