1

some grammar corrections

Co-authored-by: Christoph <tobi@urpost.de>
This commit is contained in:
Christoph
2020-04-05 21:37:48 +02:00
parent c592d39c41
commit 63fa257ec9
4 changed files with 10 additions and 5 deletions

View File

@ -124,7 +124,8 @@
<ul class="list-group-flush" style="background: slategrey"
th:each="member : ${group.getMembers()}">
<li class="list-group-item" style="background: aliceblue">
<span th:text="${member.getId()}"></span>
<span th:if='${group.getVisibility() == public}' th:text="${member.getId()}"></span>
<span th:if='${group.getVisibility() == private}' th:text="${#strings.abbreviate(member.getGivenname(), 15) + ' ' + member.getFamilyname().substring(0, 1) + '.'}"></span>
<span class="badge badge-success"
th:if='${group.getRoles().get(member.getId()) == admin}'>admin</span>
</li>