diff options
Diffstat (limited to 'templates/show_flagged.inc.php')
-rw-r--r-- | templates/show_flagged.inc.php | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/templates/show_flagged.inc.php b/templates/show_flagged.inc.php index e8eb0b72..39c93c0e 100644 --- a/templates/show_flagged.inc.php +++ b/templates/show_flagged.inc.php @@ -24,7 +24,6 @@ $web_path = Config::get('web_path'); <form id="songs" method="post" enctype="multipart/form-data" action="<?php echo Config::get('web_path'); ?>/admin/flag.php?action=reject_flags"> <table class="tabledata" cellpadding="0" cellspacing="0"> <colgroup> - <col id="col_select" /> <col id="col_object" /> <col id="col_username" /> <col id="col_flag" /> @@ -33,7 +32,6 @@ $web_path = Config::get('web_path'); <col id="col_action" /> </colgroup> <tr class="th-top"> - <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> <th class="cel_username"><?php echo _('User'); ?></th> <th class="cel_flag"><?php echo _('Flag'); ?></th> @@ -43,9 +41,6 @@ $web_path = Config::get('web_path'); </tr> <?php foreach ($flagged as $data) { $flag = new Flag($data); ?> <tr class="<?php echo flip_class(); ?>"> - <td class="cel_select"> - <input type="checkbox" name="song[]" value="<?php echo $flag->id; ?>" id="song_<?php echo $flag->id; ?>" /> - </td> <td class="cel_object"><a href="<?php echo Config::get('web_path'); ?>/admin/flag.php?action=show_edit_song&song=<?php echo $flag->object_id; ?>"><?php $flag->print_name(); ?></a></td> <td class="cel_username"><?php echo scrub_out($flag->f_user_username); ?></td> <td class="cel_flag"><?php $flag->print_flag(); ?></td> @@ -69,7 +64,6 @@ $web_path = Config::get('web_path'); </tr> <?php } ?> <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> <th class="cel_username"><?php echo _('User'); ?></th> <th class="cel_flag"><?php echo _('Flag'); ?></th> @@ -78,16 +72,4 @@ $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> - <a class="button" href="<?php echo $web_path; ?>/admin/flag.php?action=show_flagged"> - <?php echo _('Show All'); ?>... - </a> -</div> |