1

merge visibility and grouptype + merge createorga and createstudent + adapt to changes + finish create refactor

This commit is contained in:
Christoph
2020-04-10 23:48:31 +02:00
parent 5612dfba52
commit 344a284039
18 changed files with 229 additions and 370 deletions

View File

@ -5,9 +5,9 @@
<!--Grouptype Badges-->
<th:block th:fragment="badges">
<span class="badge badge-pill private float-right"
th:if='${group.getVisibility() == private}'>Privat</span>
<span class="badge badge-pill public float-right" th:if="${group.getVisibility() == public}"
th:unless="${group.getType() == lecture}">Öffentlich</span>
th:if='${group.getType() == private}'>Privat</span>
<span class="badge badge-pill public float-right"
th:if="${group.getType() == public}">Öffentlich</span>
<span class="badge badge-pill lecture float-right"
th:if='${group.getType() == lecture}'>Veranstaltung</span>