1
This commit is contained in:
killerber4t
2020-03-17 16:57:25 +01:00

View File

@ -33,14 +33,16 @@
<thead>
<tr>
<th scope="col">Mitglied</th>
<th scope="col">Rolle</th>
<th scope="col">Optionen</th>
</tr>
</thead>
<tr th:each="member : ${group.getMembers()}">
<th th:value="${member.getUser_id()}"></th>
<th th:text="${group.getRoles.get(member.getUser_id())}"></th>
<th>
<button class="btn btn-warning">Adminrecht zuweisen</button>
<button class="btn btn-danger"> Mitglied entfernen</button>
<button class="btn btn-warning">Rolle ändern</button> <!-- th:if -->
<button class="btn btn-danger">Mitglied entfernen</button>
</th>
</tr>
</table>