diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-02-08 15:16:02 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-02-08 15:16:02 +0000 |
commit | 2a0c72b30cccb9658986c619c7ff184b375d3d56 (patch) | |
tree | 604e0dfc5135a1eb60fcfac2fdc2498b80597fa2 /templates/show_democratic_playlist.inc.php | |
parent | e24192c441069d1117b5478950f4ffd21b8800c9 (diff) | |
download | ampache-2a0c72b30cccb9658986c619c7ff184b375d3d56.tar.gz ampache-2a0c72b30cccb9658986c619c7ff184b375d3d56.tar.bz2 ampache-2a0c72b30cccb9658986c619c7ff184b375d3d56.zip |
some more minor tweaks to democratic playlist, fixed now playing on localplay playlist
Diffstat (limited to 'templates/show_democratic_playlist.inc.php')
-rw-r--r-- | templates/show_democratic_playlist.inc.php | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/templates/show_democratic_playlist.inc.php b/templates/show_democratic_playlist.inc.php index e65a81ad..4edb6536 100644 --- a/templates/show_democratic_playlist.inc.php +++ b/templates/show_democratic_playlist.inc.php @@ -24,7 +24,9 @@ $web_path = Config::get('web_path'); <colgroup> <col id="col_action" /> <col id="col_votes" /> - <col id="col_song" /> + <col id="col_title" /> + <col id="col_album" /> + <col id="col_artist" /> <col id="col_time" /> <?php if (Access::check('interface','100')) { ?> <col id="col_admin" /> @@ -50,7 +52,9 @@ else { <tr class="th-top"> <th class="cel_action"><?php echo _('Action'); ?></th> <th class="cel_votes"><?php echo _('Votes'); ?></th> - <th class="cel_song"><?php echo _('Song'); ?></th> + <th class="cel_title"><?php echo _('Title'); ?></th> + <th class="cel_album"><?php echo _('Album'); ?></th> + <th class="cel_artist"><?php echo _('Artist'); ?></th> <th class="cel_time"><?php echo _('Time'); ?></th> <?php if (Access::check('interface','100')) { ?> <th class="cel_admin"><?php echo _('Admin'); ?></th> @@ -72,7 +76,9 @@ foreach($object_ids as $row_id=>$object_data) { <?php } ?> </td> <td class="cel_votes"><?php echo scrub_out($democratic->get_vote($row_id)); ?></td> - <td class="cel_song"><?php echo $song->f_link . " / " . $song->f_album_link . " / " . $song->f_artist_link; ?></td> + <td class="cel_title"><?php echo $song->f_link; ?></td> + <td class="cel_album"><?php echo $song->f_album_link; ?></td> + <td class="cel_artist"><?php echo $song->f_artist_link; ?></td> <td class="cel_time"><?php echo $song->f_time; ?></td> <?php if ($GLOBALS['user']->has_access(100)) { ?> <td class="cel_admin"> |