67 lines
3.2 KiB
HTML
67 lines
3.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en" xmlns:th="http://www.thymeleaf.org"
|
|
th:replace="~{mopslayout :: html(name='Gruppenbildung', headcontent=~{:: headcontent}, navigation=~{:: navigation}, bodycontent=~{:: bodycontent})}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Gruppendetails</title>
|
|
<th:block th:fragment="headcontent">
|
|
<!-- Links, Skripts, Styles hier einfügen! -->
|
|
</th:block>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<nav class="navigation navigation-secondary" is="mops-navigation" th:fragment="navigation">
|
|
<ul>
|
|
<li class="active">
|
|
<a th:href="@{/gruppen2}" href="/">Gruppen</a>
|
|
</li>
|
|
<li>
|
|
<a th:href="@{/gruppen2/createGroup}" href="/createGroup">Erstellen</a>
|
|
</li>
|
|
<li>
|
|
<a th:href="@{/gruppen2/findGroup}" href="/findGroup">Suche</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
<main th:fragment="bodycontent">
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<div class="col-9">
|
|
<div class="shadow-sm p-4" style="border: 10px solid aliceblue; background: aliceblue">
|
|
<form action="/" method="get">
|
|
<h1 style="color: dodgerblue; font-weight: bold" th:text="${group.getTitle()}"></h1>
|
|
<p style="font-weight: bold">
|
|
<span class="badge badge-pill badge-dark" style="background: darkslategray" th:if="${group.getVisibility() == group.getVisibility().PRIVATE }">Private Gruppe</span>
|
|
<span class="badge badge-pill badge-primary" th:if="${group.getVisibility() == group.getVisibility().PUBLIC}">Öffentliche Gruppe</span>
|
|
<span class="badge badge-pill badge-success" style="background: lightseagreen" th:if="${group.getType() == group.getType().LECTURE}"> Veranstaltung</span>
|
|
</p>
|
|
<p th:text="${group.getDescription()}"></p>
|
|
<div class="form-group">
|
|
<div class="text-right">
|
|
<button class="btn btn-danger" type="danger" style="border-style: none;">Gruppe verlassen</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<div class="col-3" style="white-space: nowrap">
|
|
<div>
|
|
<h2 style="display: inline-block; margin: 0">Mitglieder</h2>
|
|
<button class="btn btn-secondary" type="warning" style="background: slategrey; float: right" >Mitglieder bearbeiten</button>
|
|
<p></p>
|
|
</div>
|
|
<div>
|
|
<ul th:each="member : ${group.getMembers()}" class="list-group-flush" style="background: slategrey">
|
|
<li class="list-group-item" style="background: aliceblue">
|
|
<span th:text="${member.getUser_id()}"></span>
|
|
<span th:if="${role == role.ADMIN}" class="badge badge-success">admin</span>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html> |