|
From: Ken T. <ke...@us...> - 2003-04-19 18:12:46
|
Update of /cvsroot/phpbt/phpbt/templates/default/admin
In directory sc8-pr-cvs1:/tmp/cvs-serv13800/templates/default/admin
Modified Files:
group-edit.html grouplist.html
Log Message:
* new database update model
- database schema is versioned
* new assignable-group declaration
- each group has an assignable flag
- configurable by admin/group.php
- updated build_select's owner section
Index: group-edit.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/group-edit.html,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- group-edit.html 5 Nov 2002 20:58:19 -0000 1.5
+++ group-edit.html 19 Apr 2003 18:12:41 -0000 1.6
@@ -27,6 +27,9 @@
<td align="right" valign="top">Name:</td>
<td><input type="text" size="20" maxlength="40" name="group_name" value="{$group_name|stripslashes|htmlspecialchars}"></td>
</tr>
+<tr>
+ <td align="right" valign="top">Assignable:</td>
+ <td><input type="checkbox" name="assignable" value="1" {if $assignable > 0}checked="checked"{/if}></td>
</table>
<br>
<input type='submit' name='submit' value='Submit'>
Index: grouplist.html
===================================================================
RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/grouplist.html,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- grouplist.html 18 May 2002 03:00:50 -0000 1.6
+++ grouplist.html 19 Apr 2003 18:12:42 -0000 1.7
@@ -31,6 +31,9 @@
<a href="{$smarty.server.PHP_SELF}?op=del&group_id={$groups[group].group_id}" onClick="return confirm('This will remove all user assignments to this group and the group itself. Continue?')">Delete</a> |
<a href="{$smarty.server.PHP_SELF}?op=purge&group_id={$groups[group].group_id}" onClick="return confirm('This will remove all user assignments to this group. Continue?')">Purge</a>
{/if}
+ {if $groups[group].assignable}
+ | Assignable
+ {/if}
</td>
</tr>
{/section}
|