23 lines
912 B
HTML
23 lines
912 B
HTML
<!DOCTYPE HTML>
|
|
<html xmlns:th="http://www.thymeleaf.org">
|
|
<head th:fragment="headerfiles">
|
|
<meta charset="UTF-8"/>
|
|
</head>
|
|
<body>
|
|
<div th:fragment="confLine (conference)" class="row text-left conference-row h3" style="background-color: white;">
|
|
<div class="col d-flex justify-content-between">
|
|
<a th:href="@{'conference?id='+${conference.id}}" class="w-100 text-decoration">
|
|
<span class="h5" th:text="${conference.title}"/>
|
|
<span class="text-muted h6 float-right m-2" th:text="${conference.datesString}"/>
|
|
</a>
|
|
<input class="id-class" type="hidden" th:value="${conference.id}"/>
|
|
<a class="remove-paper pull-right m-auto" th:href="@{'/conferences/delete/'+${conference.id}}"
|
|
data-confirm="Удалить конференцию?">
|
|
<i class="fa fa-trash" aria-hidden="true"></i>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</body>
|
|
</html> |