20 lines
648 B
HTML
20 lines
648 B
HTML
<!DOCTYPE html>
|
|
<html lang="ru" xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout" layout:decorate="~{default}">
|
|
|
|
<head>
|
|
<title>Личный кабинет</title>
|
|
</head>
|
|
|
|
<body>
|
|
<main layout:fragment="content" class="w-50 mx-auto main">
|
|
<div class="tab-content mt-2">
|
|
<h2 class="text-center">Заказы</h2>
|
|
<div class="tab-pane container active" id="orders">
|
|
<th:block
|
|
th:replace="~{ orders :: orders (items=${items}, totalPages=${totalPages}, currentPage=${currentPage}, products=${products})}" />
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
|
|
</html> |