diff options
author | pb1dft <pb1dft@ampache> | 2007-02-19 21:07:36 +0000 |
---|---|---|
committer | pb1dft <pb1dft@ampache> | 2007-02-19 21:07:36 +0000 |
commit | d84f889c9c5940b5c734194b0ac28ad49ecd941d (patch) | |
tree | 323b0044a841e1677607698342ac92079c172a52 /templates/show_flagged.inc.php | |
parent | ce617e69811065253acdb2cc4009d9ee2280d804 (diff) | |
download | ampache-d84f889c9c5940b5c734194b0ac28ad49ecd941d.tar.gz ampache-d84f889c9c5940b5c734194b0ac28ad49ecd941d.tar.bz2 ampache-d84f889c9c5940b5c734194b0ac28ad49ecd941d.zip |
Some minor flag mods; show username instead of id,show comment on last then flagged, made album in flagged clickable
Diffstat (limited to 'templates/show_flagged.inc.php')
-rw-r--r-- | templates/show_flagged.inc.php | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/templates/show_flagged.inc.php b/templates/show_flagged.inc.php index 358ca3dd..5a6dec51 100644 --- a/templates/show_flagged.inc.php +++ b/templates/show_flagged.inc.php @@ -28,6 +28,7 @@ $web_path = conf('web_path'); <th><?php echo _('Object'); ?></th> <th><?php echo _('User'); ?></th> <th><?php echo _('Flag'); ?></th> + <th><?php echo _('Comment'); ?></th> <th><?php echo _('Status'); ?></th> <th><?php echo _('Action'); ?></th> </tr> @@ -36,9 +37,10 @@ $web_path = conf('web_path'); <td align="center"> <input type="checkbox" name="song[]" value="<?php echo $flag->id; ?>" id="song_<?php echo $flag->id; ?>" /> </td> - <td><?php $flag->print_name(); ?></td> - <td><?php echo scrub_out($flag->user); ?></td> + <td><a href="<?php echo conf('web_path'); ?>/admin/flag.php?action=show_edit_song&song=<?php echo $flag->object_id; ?>"><?php $flag->print_name(); ?></a></td> + <td><?php echo scrub_out($flag->f_user_username); ?></td> <td><?php $flag->print_flag(); ?></td> + <td><?php echo scrub_out($flag->comment); ?></td> <td><?php $flag->print_status(); ?></td> <td align="center"> <?php if ($flag->approved) { ?> @@ -54,11 +56,11 @@ $web_path = conf('web_path'); </tr> <?php } if (!count($flagged)) { ?> <tr class="<?php echo flip_class(); ?>"> - <td colspan="6" class="error"><?php echo _('No Records Found'); ?></td> + <td colspan="7" class="error"><?php echo _('No Records Found'); ?></td> </tr> <?php } ?> <tr class="<?php echo flip_class(); ?>"> - <td colspan="6"> + <td colspan="7"> <select name="update_action"> <option value="reject"><?php echo _('Reject'); ?></option> <option value="approve"><?php echo _('Approve'); ?></option> |