26 lines
1.4 KiB
HTML
26 lines
1.4 KiB
HTML
<!DOCTYPE html SYSTEM "http://www.thymeleaf.org/dtd/xhtml1-strict-thymeleaf-spring4-4.dtd">
|
|
<html xmlns:th="http://www.thymeleaf.org" lang="ru">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Подтверждение отчета</title>
|
|
<link th:href="@{/webjars/bootstrap/5.3.0-alpha1/css/bootstrap.min.css}" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<div class="container mt-5">
|
|
<h2 class="mb-4">Подтверждение отчета аспиранта</h2>
|
|
<div class="card mb-3">
|
|
<div class="card-header" th:text="'Отчет аспиранта: ' + ${aspirantName}">Отчет аспиранта: Иванов Иван Иванович
|
|
</div>
|
|
<div class="card-body">
|
|
<p><strong>Курсовая работа:</strong> <span th:text="${courseWorkScore}">80</span> баллов</p>
|
|
<p><strong>Научные исследования:</strong> <span th:text="${researchScore}">70</span> баллов</p>
|
|
<p><strong>Публикации:</strong> <span th:text="${publicationsScore}">60</span> баллов</p>
|
|
<button type="button" class="btn btn-success">Подтвердить</button>
|
|
<button type="button" class="btn btn-danger">Отклонить</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script th:src="@{/webjars/bootstrap/5.3.0-alpha1/js/bootstrap.bundle.min.js}"></script>
|
|
</body>
|
|
</html> |