2011-03-02 13:56:48 +03:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* Template for admin pages
|
|
|
|
*/
|
|
|
|
?>
|
2011-03-02 01:20:16 +03:00
|
|
|
<h1>Administration</h1>
|
|
|
|
<h2>Users</h2>
|
|
|
|
|
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Groups</th>
|
2011-04-16 16:59:10 +04:00
|
|
|
<th></th>
|
2011-03-02 01:20:16 +03:00
|
|
|
</tr>
|
|
|
|
<thead>
|
|
|
|
<tbody>
|
2011-03-09 22:13:52 +03:00
|
|
|
<?php foreach($_["users"] as $user): ?>
|
2011-03-02 01:20:16 +03:00
|
|
|
<tr>
|
2011-03-09 23:57:00 +03:00
|
|
|
<td><?php echo $user["name"]; ?></td>
|
|
|
|
<td><?php echo $user["groups"]; ?></td>
|
2011-04-16 16:59:10 +04:00
|
|
|
<td><a href="" class="edituser-button">edit</a> | <a class="removeuser-button" href="">remove</a></td>
|
2011-03-02 01:20:16 +03:00
|
|
|
</tr>
|
2011-03-09 22:13:52 +03:00
|
|
|
<?php endforeach; ?>
|
2011-03-02 01:20:16 +03:00
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
2011-04-16 16:59:10 +04:00
|
|
|
<a id="adduser-button" href="">New user</a>
|
|
|
|
|
2011-03-02 01:20:16 +03:00
|
|
|
<h2>Groups</h2>
|
2011-04-16 16:59:10 +04:00
|
|
|
<form>
|
|
|
|
<table>
|
|
|
|
<thead>
|
2011-03-02 01:20:16 +03:00
|
|
|
<tr>
|
2011-04-16 16:59:10 +04:00
|
|
|
<th>Name</th>
|
|
|
|
<th></th>
|
2011-03-02 01:20:16 +03:00
|
|
|
</tr>
|
2011-04-16 16:59:10 +04:00
|
|
|
<thead>
|
|
|
|
<tbody>
|
|
|
|
<?php foreach($_["groups"] as $group): ?>
|
|
|
|
<tr>
|
|
|
|
<td><?php echo $group["name"] ?></td>
|
|
|
|
<td><a class="removegroup-button" href="">remove</a></td>
|
|
|
|
</tr>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
<tr>
|
|
|
|
<td><input type="text" name="name" /></td>
|
|
|
|
<td><input type="submit" /></td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<a id="addgroup-button" href="">Add group</a>
|
|
|
|
|
|
|
|
|
|
|
|
<div id="adduser-form" title="Add user">
|
|
|
|
<form>
|
|
|
|
User name<br>
|
|
|
|
<input type="text" name="name" /><br>
|
|
|
|
Password<br>
|
|
|
|
<input type="password" name="password" />
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="edituser-form" title="Force new password">
|
|
|
|
<form>
|
|
|
|
New password for $user<br>
|
|
|
|
<input type="password" name="password" />
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="removeuser-form" title="Remove user">
|
|
|
|
Do you really want to delete user $user?
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="removegroup-form" title="Remove Group">
|
|
|
|
Do you really want to delete group $group?
|
|
|
|
</div>
|