diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-02-04 02:49:12 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-02-04 02:49:12 +0000 |
commit | 491b530ccad65f0776880642714c3319a7a14fbf (patch) | |
tree | 79531e00c712c498ce113737c0efc4ba5492a732 /templates/show_videos.inc.php | |
parent | 87ac3e4500f84a8212ec351e70e19191f0637bc1 (diff) | |
download | ampache-491b530ccad65f0776880642714c3319a7a14fbf.tar.gz ampache-491b530ccad65f0776880642714c3319a7a14fbf.tar.bz2 ampache-491b530ccad65f0776880642714c3319a7a14fbf.zip |
add a few more columns to the video view, tweak how it picks the title when indexing
Diffstat (limited to 'templates/show_videos.inc.php')
-rw-r--r-- | templates/show_videos.inc.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/templates/show_videos.inc.php b/templates/show_videos.inc.php index cad7ea19..b58f741d 100644 --- a/templates/show_videos.inc.php +++ b/templates/show_videos.inc.php @@ -26,10 +26,16 @@ $web_path = Config::get('web_path'); <colgroup> <col id="col_add" /> <col id="col_title" /> + <col id="col_codec" /> + <col id="col_resolution" /> + <col id="col_tags" /> </colgroup> <tr class="th-top"> <th class="cel_add"><?php echo _('Add'); ?></th> <th class="cel_title"><?php echo _('Title'); ?></th> + <th class="cel_codec"><?php echo _('Codec'); ?></th> + <th class="cel_resolution"><?php echo _('Resolution'); ?></th> + <th class="cel_tags"><?php echo _('Tags'); ?></th> </tr> <?php /* Foreach through every artist that has been passed to us */ @@ -49,6 +55,10 @@ foreach ($object_ids as $video_id) { <tr class="th-bottom"> <th class="cel_add"><?php echo _('Add'); ?></th> <th class="cel_title"><?php echo _('Title'); ?></th> + <th class="cel_codec"><?php echo _('Codec'); ?></th> + <th class="cel_resolution"><?php echo _('Resolution'); ?></th> + <th class="cel_tags"><?php echo _('Tags'); ?></th> + </tr> </table> <?php require Config::get('prefix') . '/templates/list_header.inc.php'; ?> |