37 lines
1.2 KiB
HTML
37 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de" xmlns:th="http://www.thymeleaf.org" th:replace="~{mopslayout :: html(
|
|
name='Gruppenfindung',
|
|
title='Meine Gruppen',
|
|
headcontent=~{fragments/general :: headcontent('index')},
|
|
navigation=~{fragments/general :: nav('index')},
|
|
bodycontent=~{:: bodycontent})}">
|
|
|
|
<body>
|
|
|
|
<main th:fragment="bodycontent">
|
|
<h1>Meine Gruppen</h1>
|
|
|
|
<!--Gruppenliste belegte Gruppen-->
|
|
<div class="mx-n2 mx-sm-0" th:unless="${lectures.isEmpty()}">
|
|
<h3>Veranstaltungen</h3>
|
|
|
|
<div class="content px-1 px-sm-3" th:each="group: ${lectures}"
|
|
th:insert="fragments/groups :: groupcontentlink"></div>
|
|
</div>
|
|
|
|
<div class="mx-n2 mx-sm-0" th:unless="${publics.isEmpty()}">
|
|
<h3>Öffentliche Gruppen</h3>
|
|
<div class="content px-1 px-sm-3" th:each="group: ${publics}"
|
|
th:insert="fragments/groups :: groupcontentlink"></div>
|
|
</div>
|
|
|
|
<div class="mx-n2 mx-sm-0" th:unless="${privates.isEmpty()}">
|
|
<h3>Private Gruppen</h3>
|
|
<div class="content px-1 px-sm-3" th:each="group: ${privates}"
|
|
th:insert="fragments/groups :: groupcontentlink"></div>
|
|
</div>
|
|
</main>
|
|
|
|
</body>
|
|
</html>
|