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_video_row.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_video_row.inc.php')
-rw-r--r-- | templates/show_video_row.inc.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/templates/show_video_row.inc.php b/templates/show_video_row.inc.php index 16fed284..5618a60d 100644 --- a/templates/show_video_row.inc.php +++ b/templates/show_video_row.inc.php @@ -23,3 +23,6 @@ <?php echo Ajax::button('?action=basket&type=video&id=' . $video->id,'add',_('Add'),'add_video_' . $video->id); ?> </td> <td class="cel_title"><?php echo $video->f_title; ?></td> +<td class="cel_codec"><?php echo $video->f_codec; ?></td> +<td class="cel_resolution"><?php echo $video->f_resolution; ?></td> +<td class="cel_tags"><?php $video->f_tags; ?></td> |