nextcloud/admin/templates/users.php

45 lines
670 B
PHP
Raw Normal View History

<?php
/*
* Template for admin pages
*/
?>
<h1>Administration</h1>
<h2>Users</h2>
<table>
<thead>
<tr>
<th></th>
<th>Name</th>
<th>Groups</th>
</tr>
<thead>
<tbody>
<?php foreach($_["users"] as $user): ?>
<tr>
<td><input type="checkbox"></td>
<td><?php echo $user["name"]; ?></td>
<td><?php echo $user["groups"]; ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<h2>Groups</h2>
<table>
<thead>
<tr>
<th>Name</th>
<th></th>
</tr>
<thead>
<tbody>
<?php foreach($_["groups"] as $group): ?>
<tr>
<td><?php echo $group["name"]; ?></td>
<td>remove</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>