24 lines
1.0 KiB
HTML
24 lines
1.0 KiB
HTML
<!DOCTYPE HTML>
|
|
<html xmlns:th="http://www.thymeleaf.org">
|
|
<head th:fragment="headerfiles">
|
|
<meta charset="UTF-8"/>
|
|
</head>
|
|
<body>
|
|
<div th:fragment="userDashboard (user)" class="col-12 col-sm-12 col-md-12 col-lg-4 col-xl-3 dashboard-card">
|
|
<div class="row">
|
|
<div class="col col-10">
|
|
<input type="hidden" id="userId" th:value="${user.user.id}"/>
|
|
<b><p th:text="${user.user.lastName} + ' ' + ${user.user.firstName} + ' ' + ${user.user.patronymic}"></p>
|
|
</b>
|
|
<i><p th:if="${user.conference != null}" th:text="'Сейчас на конференции ' + ${user.conference.title}"></p>
|
|
</i>
|
|
<i><p th:if="${user.lesson != null}"
|
|
th:text="'Сейчас на паре ' + ${user.lesson.nameOfLesson} + ' в аудитории ' + ${user.lesson.room}"></p>
|
|
</i>
|
|
<p th:if="${user.isOnline()}">Онлайн</p>
|
|
<button onclick="blockUser()">Заблокировать</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |