1

Merge remote-tracking branch 'origin/groups-for-user' into groups-for-user

This commit is contained in:
killerber4t
2020-03-12 15:51:13 +01:00

View File

@ -28,10 +28,11 @@
<h1>Meine Gruppen</h1> <h1>Meine Gruppen</h1>
<div class="container-fluid"> <div class="container-fluid">
<form action="/" method="get"> <form action="/" method="get">
<div th:each="gruppe: ${gruppen}" style="border: 10px solid aliceblue; background: aliceblue"> <div th:each="gruppe: ${gruppen}">
<ul> <div style="border: 10px solid aliceblue; background: aliceblue">
<li th:text="${gruppe.getTitle()}"></li> <h4 th:href="url" style="color: dodgerblue; font-weight: bold" th:text="${gruppe.getTitle()}"></h4>
</ul> <p th:text="${gruppe.getDescription()}"></p>
</div>
</div> </div>
</form> </form>
</div> </div>