1

add table column

This commit is contained in:
kasch309
2020-03-17 16:56:38 +01:00
parent a67d8fa993
commit 06eb174c42

View File

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