|
From: Benjamin C. <bc...@us...> - 2001-12-04 15:16:24
|
Update of /cvsroot/phpbt/phpbt/templates/default/admin
In directory usw-pr-cvs1:/tmp/cvs-serv21854/templates/default/admin
Modified Files:
wrap.html
Added Files:
grouplist.html
Log Message:
Group administration
--- NEW FILE: grouplist.html ---
<br>
<table border="0" width="640">
<tr>
<td valign="top">
<b> Group List</b>
<hr size="1">
<table border="0">
<tr bgcolor="#eeeeee">
<th><a href="{nameurl}">Name</a></th>
<th><a href="{counturl}">Users</a></th>
<th> </th>
</tr>
<!-- BEGIN row -->
<!-- BEGIN unlockedblock -->
<tr class="{trclass}">
<td><a href="{me}?op=edit&id={groupid}">{name}</a></td>
<td align="center">{count}</td>
<td align="center">
<a href="{me}?op=del&id={groupid}" onClick="return confirm('This will remove all user assignments to this group and the group itself. Continue?')">Delete</a> |
<a href="{me}?op=purge&id={groupid}" onClick="return confirm('This will remove all user assignments to this group. Continue?')">Purge</a>
</td>
</tr>
<!-- END unlockedblock -->
<!-- BEGIN lockedblock -->
<tr class="{trclass}">
<td>{name}</td>
<td align="center">{count}</td>
<td align="center">Locked</td>
</tr>
<!-- END lockedblock -->
<!-- END row -->
</table>
</td>
<td valign="top">
<div align="right"><b>{action} Group </b></div>
<hr size="1">
<form action="{me}" method="post">
<input type="hidden" name="id" value="{fgroupid}">
<table border='0'>
<tr>
<td colspan="2" align="center" valign="top">
<font color="#ff0000">{error}</font>
</td>
</tr>
<tr>
<td align="right" valign="top">Name:</td>
<td><input type="text" size="20" maxlength="40" name="fname" value="{fname}"></td>
</tr>
</table>
<div align="right">
<input type='submit' name='submit' value='Submit'>
</div>
</form>
</td>
</table>
Index: wrap.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/wrap.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- wrap.html 2001/10/13 23:15:52 1.2
+++ wrap.html 2001/12/04 14:32:24 1.3
@@ -16,6 +16,7 @@
<a href="configure.php">Configuration</a> |
<a href="project.php">Projects</a> |
<a href="user.php">Users</a> |
+ <a href="group.php">Groups</a> |
<a href="status.php">Statuses</a> |
<a href="resolution.php">Resolutions</a> |
<a href="severity.php">Severity</a> |
|