diff options
Diffstat (limited to 'templates/show_disabled_songs.inc.php')
-rw-r--r-- | templates/show_disabled_songs.inc.php | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/templates/show_disabled_songs.inc.php b/templates/show_disabled_songs.inc.php index c651b19e..466c0e21 100644 --- a/templates/show_disabled_songs.inc.php +++ b/templates/show_disabled_songs.inc.php @@ -1,5 +1,5 @@ <?php -/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */ +/* vim:set softtabstop=4 shiftwidth=4 expandtab: */ /** * * LICENSE: GNU General Public License, version 2 (GPLv2) @@ -32,39 +32,39 @@ <col id="col_additiontime" /> </colgroup> <tr class="th-top"> - <th class="cel_select"><a href="#" onclick="check_select('song'); return false;"><?php echo T_('Select'); ?></a></th> - <th class="cel_song"><?php echo T_('Title'); ?></th> - <th class="cel_album"><?php echo T_('Album'); ?></th> - <th class="cel_artist"><?php echo T_('Artist'); ?></th> - <th class="cel_filename"><?php echo T_('Filename'); ?></th> - <th class="cel_additiontime"><?php echo T_('Addition Time'); ?></th> + <th class="cel_select"><a href="#" onclick="check_select('song'); return false;"><?php echo T_('Select'); ?></a></th> + <th class="cel_song"><?php echo T_('Title'); ?></th> + <th class="cel_album"><?php echo T_('Album'); ?></th> + <th class="cel_artist"><?php echo T_('Artist'); ?></th> + <th class="cel_filename"><?php echo T_('Filename'); ?></th> + <th class="cel_additiontime"><?php echo T_('Addition Time'); ?></th> </tr> <?php foreach ($songs as $song) { ?> - <tr class="<?php echo UI::flip_class(); ?>"> - <td class="cel_select"><input type="checkbox" name="song[]" value="<?php echo $song->id; ?>" /></td> - <td class="cel_song"><?php echo $song->title; ?></td> - <td class="cel_album"><?php echo $song->get_album_name($song->album); ?></td> - <td class="cel_artist"><?php echo $song->get_artist_name($song->album); ?></td> - <td class="cel_filename"><?php echo $song->file; ?></td> - <td class="cel_additiontime"><?php echo date("h:i:s, m/d/y",$song->addition_time); ?></td> + <tr class="<?php echo UI::flip_class(); ?>"> + <td class="cel_select"><input type="checkbox" name="song[]" value="<?php echo $song->id; ?>" /></td> + <td class="cel_song"><?php echo $song->title; ?></td> + <td class="cel_album"><?php echo $song->get_album_name($song->album); ?></td> + <td class="cel_artist"><?php echo $song->get_artist_name($song->album); ?></td> + <td class="cel_filename"><?php echo $song->file; ?></td> + <td class="cel_additiontime"><?php echo date("h:i:s, m/d/y",$song->addition_time); ?></td> - </tr> + </tr> <?php } if (!count($songs)) { ?> - <tr class="<?php echo UI::flip_class(); ?>"> - <td colspan="7"><span class="error"><?php echo T_('No Records Found'); ?></span></td> - </tr> + <tr class="<?php echo UI::flip_class(); ?>"> + <td colspan="7"><span class="error"><?php echo T_('No Records Found'); ?></span></td> + </tr> <?php } ?> <tr class="th-bottom"> - <th class="cel_select"><a href="#" onclick="check_select('song'); return false;"><?php echo T_('Select'); ?></a></th> - <th class="cel_song"><?php echo T_('Title'); ?></th> - <th class="cel_album"><?php echo T_('Album'); ?></th> - <th class="cel_artist"><?php echo T_('Artist'); ?></th> - <th class="cel_filename"><?php echo T_('Filename'); ?></th> - <th class="cel_additiontime"><?php echo T_('Addition Time'); ?></th> + <th class="cel_select"><a href="#" onclick="check_select('song'); return false;"><?php echo T_('Select'); ?></a></th> + <th class="cel_song"><?php echo T_('Title'); ?></th> + <th class="cel_album"><?php echo T_('Album'); ?></th> + <th class="cel_artist"><?php echo T_('Artist'); ?></th> + <th class="cel_filename"><?php echo T_('Filename'); ?></th> + <th class="cel_additiontime"><?php echo T_('Addition Time'); ?></th> </tr> </table> <div class="formValidation"> - <input class="button" type="submit" value="<?php echo T_('Remove'); ?>" /> - <input type="hidden" name="action" value="remove_disabled" /> + <input class="button" type="submit" value="<?php echo T_('Remove'); ?>" /> + <input type="hidden" name="action" value="remove_disabled" /> </div> </form> |