diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-03-07 06:51:52 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-03-07 06:51:52 +0000 |
commit | bd270b02274b4e43a887e86805a44cf456f2da38 (patch) | |
tree | 8accb5ce9cbccd2f051eb271f9daa30c589e0fc2 /templates/show_create_democratic.inc.php | |
parent | 84b483c99a32452dc53b9b77fdf818c710bcd5d3 (diff) | |
download | ampache-bd270b02274b4e43a887e86805a44cf456f2da38.tar.gz ampache-bd270b02274b4e43a887e86805a44cf456f2da38.tar.bz2 ampache-bd270b02274b4e43a887e86805a44cf456f2da38.zip |
fixed the acl issue... sigh
Diffstat (limited to 'templates/show_create_democratic.inc.php')
-rw-r--r-- | templates/show_create_democratic.inc.php | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/templates/show_create_democratic.inc.php b/templates/show_create_democratic.inc.php index cce0857d..7059cebe 100644 --- a/templates/show_create_democratic.inc.php +++ b/templates/show_create_democratic.inc.php @@ -1,7 +1,7 @@ <?php /* - Copyright (c) 2001 - 2007 Ampache.org + Copyright (c) 2001 - 2008 Ampache.org All rights reserved. This program is free software; you can redistribute it and/or @@ -31,6 +31,20 @@ show_box_top(_('Create Democratic Playlist')); ?> <td><?php show_playlist_select('democratic'); ?></td> </tr> <tr> + <td><?php echo _('Cooldown Time'); ?></td> + <td><input type="textbox" size="4" maxlength="6" name="cooldown" value="5" /><?php echo _('minutes'); ?></td> +</tr> +<tr> + <td><?php echo _('Level'); ?></td> + <td> + <select name="level"> + <option value="25"><?php echo _('User'); ?></option> + <option value="50"><?php echo _('Content Manager'); ?></option> + <option value="75"><?php echo _('Catalog Manager'); ?></option> + <option value="100"><?php echo _('Admin'); ?></option> + </select> + +<tr> <td><?php echo _('Make Default'); ?></td> <td><input type="checkbox" name="make_default" value="1" /></td> </tr> |