diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-05-14 20:43:20 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-05-14 20:43:20 +0000 |
commit | d75902980878d7a8f84cefe2b4a2ee4b46ebfa50 (patch) | |
tree | b15d89fbc37ed094bdb99823dd1d5cb3100182f0 /templates/show_songs.inc.php | |
parent | f5723a113e81a93b82f49a377a5085db99b94461 (diff) | |
download | ampache-d75902980878d7a8f84cefe2b4a2ee4b46ebfa50.tar.gz ampache-d75902980878d7a8f84cefe2b4a2ee4b46ebfa50.tar.bz2 ampache-d75902980878d7a8f84cefe2b4a2ee4b46ebfa50.zip |
added some links to the sidebar preferences adn then also added in some missing fields to the show songs, only missing the ratings on show songs now...
Diffstat (limited to 'templates/show_songs.inc.php')
-rw-r--r-- | templates/show_songs.inc.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/templates/show_songs.inc.php b/templates/show_songs.inc.php index 00a8decd..95ea8f3d 100644 --- a/templates/show_songs.inc.php +++ b/templates/show_songs.inc.php @@ -37,6 +37,10 @@ $ajax_url = Config::get('ajax_url'); </th> <th><?php echo _('Artist'); ?></th> <th><?php echo _('Album'); ?></th> + <th><?php echo _('Genre'); ?></th> + <th><?php echo _('Track'); ?></th> + <td><?php echo _('Time'); ?></th> + <td><?php echo _('Action'); ?></td> </tr> <?php foreach ($object_ids as $song_id) { @@ -50,6 +54,19 @@ $ajax_url = Config::get('ajax_url'); <td><?php echo $song->f_link; ?></td> <td><?php echo $song->f_artist_link; ?></td> <td><?php echo $song->f_album_link; ?></td> + <td><?php echo $song->f_genre_link; ?></td> + <td><?php echo $song->f_track; ?></td> + <td><?php echo $song->f_time; ?></td> + <td> + <span> + <?php echo get_user_icon('flag_off','flag',_('Flag')); ?> + </span> + <?php if ($GLOBALS['user']->has_access(100)) { ?> + <span> + <?php echo get_user_icon('edit','',_('Edit')); ?> + </span> + <?php } ?> + </td> </tr> <?php } ?> </table> |