68 lines
3.1 KiB
HTML
68 lines
3.1 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>
|
|
<li th:if="${account.getRoles().contains('orga')}">
|
|
<a th:href="@{/gruppen2/createLecture}" href="/createLecture">Veranstaltung</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; border-radius: 5px; background: aliceblue">
|
|
<h1 style="color: black; font-weight: bold" th:text="${group.getTitle()}"></h1>
|
|
<h3>
|
|
<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>
|
|
</h3>
|
|
<div class="shadow-sm p-4" style="background: white">
|
|
<p style="overflow-wrap: break-word"
|
|
th:text="${group.getDescription()}"></p>
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="text-right">
|
|
<form method="post" action="/gruppen2/detailsBeitreten">
|
|
<button class="btn btn-primary"
|
|
style="border-style: none;"
|
|
th:href="@{/gruppen2/detailsBeitreten(id=${group.getId()})}"
|
|
th:name="id" th:value="${group.id}"
|
|
type="submit">Gruppe beitreten
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|