17 lines
552 B
HTML
17 lines
552 B
HTML
<!DOCTYPE HTML>
|
|
<html xmlns:th="http://www.thymeleaf.org">
|
|
<head th:fragment="headerfiles">
|
|
<meta charset="UTF-8"/>
|
|
</head>
|
|
<body>
|
|
<div th:fragment="noRecords(entities, noRecordsMessage, url)" class="col-12 text-center"
|
|
style="background-color: white;">
|
|
<div th:if="*{#lists.isEmpty(entities)}">
|
|
<div th:text="'Еще не создано ни'+${noRecordsMessage}"/>
|
|
<a th:href="@{${url}+'?id=0'}">
|
|
Перейдите по ссылке, чтобы добавить
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |