diff options
author | spocky <spocky@ampache> | 2007-11-20 23:09:40 +0000 |
---|---|---|
committer | spocky <spocky@ampache> | 2007-11-20 23:09:40 +0000 |
commit | 794036ac1f462f302ce71e64132d981f69023e09 (patch) | |
tree | 0b2835d19cf7baf854fa3c894aa067bf5356e5cc /templates/show_flagged.inc.php | |
parent | 28b86ee456498776e596008ef531b950ec32e7c9 (diff) | |
download | ampache-794036ac1f462f302ce71e64132d981f69023e09.tar.gz ampache-794036ac1f462f302ce71e64132d981f69023e09.tar.bz2 ampache-794036ac1f462f302ce71e64132d981f69023e09.zip |
Almost finished css cleanup
Diffstat (limited to 'templates/show_flagged.inc.php')
-rw-r--r-- | templates/show_flagged.inc.php | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/templates/show_flagged.inc.php b/templates/show_flagged.inc.php index ec8c7cd0..e8eb0b72 100644 --- a/templates/show_flagged.inc.php +++ b/templates/show_flagged.inc.php @@ -68,15 +68,6 @@ $web_path = Config::get('web_path'); <td colspan="7" class="error"><?php echo _('No Records Found'); ?></td> </tr> <?php } ?> -<tr class="<?php echo flip_class(); ?>"> - <td colspan="7"> - <select name="update_action"> - <option value="reject"><?php echo _('Reject'); ?></option> - <option value="approve"><?php echo _('Approve'); ?></option> - </select> - <input class="button" type="submit" value="<?php echo _('Update'); ?>" /> - </td> -</tr> <tr class="th-bottom"> <th class="cel_select"><a href="#" onclick="check_select('song'); return false;"><?php echo _('Select'); ?></a></th> <th class="cel_object"><?php echo _('Object'); ?></th> @@ -87,9 +78,16 @@ $web_path = Config::get('web_path'); <th class="cel_action"><?php echo _('Action'); ?></th> </tr> </table> +<div class="formValidation"> + <select name="update_action"> + <option value="reject"><?php echo _('Reject'); ?></option> + <option value="approve"><?php echo _('Approve'); ?></option> + </select> + <input class="button" type="submit" value="<?php echo _('Update'); ?>" /> +</div> </form> -<div class="text-action"> -<a href="<?php echo $web_path; ?>/admin/flag.php?action=show_flagged"> - <?php echo _('Show All'); ?>... -</a> +<div> + <a class="button" href="<?php echo $web_path; ?>/admin/flag.php?action=show_flagged"> + <?php echo _('Show All'); ?>... + </a> </div> |