diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-03-01 02:35:42 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-03-01 02:35:42 +0000 |
commit | e474991d13f41a56e85b4966e156973d33833e6c (patch) | |
tree | 690e3e2b9b2c009153d8d319ba8e4a15de6499c9 /templates/show_random.inc.php | |
parent | c9ccb05a40c08aadc2defeaf48e84032ae5c0a0c (diff) | |
download | ampache-e474991d13f41a56e85b4966e156973d33833e6c.tar.gz ampache-e474991d13f41a56e85b4966e156973d33833e6c.tar.bz2 ampache-e474991d13f41a56e85b4966e156973d33833e6c.zip |
Resolve #401 new database update, reset album thumbs and use resized art...
Diffstat (limited to 'templates/show_random.inc.php')
-rw-r--r-- | templates/show_random.inc.php | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/templates/show_random.inc.php b/templates/show_random.inc.php index 7bef5db8..ecef8904 100644 --- a/templates/show_random.inc.php +++ b/templates/show_random.inc.php @@ -25,11 +25,13 @@ <col id="col_field" /> <col id="col_operator" /> <col id="col_value" /> + <col id="col_method" /> </colgroup> <tr class="th-top"> <th class="col_field"><?php echo _('Field'); ?></th> <th class="col_operator"><?php echo _('Operator'); ?></th> <th class="col_value"><?php echo _('Value'); ?></th> + <th class="col_method"><?php echo _('Method'); ?></th> </tr> <tr> <td valign="top"> @@ -57,6 +59,12 @@ <td valign="top"> <input type="textbox" name="value" /> </td> + <td valign="top"> + <select name="method"> + <option value="OR"><?php echo _('OR'); ?></option> + <option value="AND"><?php echo _('AND'); ?></option> + </select> + </td> </tr> <tr> <td> @@ -65,12 +73,13 @@ <td> <?php echo Ajax::button('?page=random&action=save_rules','download',_('Save Rules As'),'save_random_rules'); ?><?php echo _('Save Rules As'); ?> </td> - <td> + <td colspan="2"> <?php echo Ajax::button('?page=random&action=load_rules','cog',_('Load Saved Rules'),'load_random_rules'); ?><?php echo _('Load Saved Rules'); ?> </td> + </tr> <tr> - <td colspan="3"> + <td colspan="4"> <div id="rule_status"></div> </td> </tr> |