summaryrefslogtreecommitdiffstats
path: root/templates/show_videos.inc.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2009-03-08 03:54:04 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2009-03-08 03:54:04 +0000
commit2799c89f58d389ac659c0bc414a86cb1454afd75 (patch)
tree16392f16aec13dafb97768f894312974d83e87f2 /templates/show_videos.inc.php
parent059f6d4d5cde3a66b3c1a998ce123e7eb88e7a98 (diff)
downloadampache-2799c89f58d389ac659c0bc414a86cb1454afd75.tar.gz
ampache-2799c89f58d389ac659c0bc414a86cb1454afd75.tar.bz2
ampache-2799c89f58d389ac659c0bc414a86cb1454afd75.zip
add length to the video browse, put in some stuff for the now playing table up the config version in prep for another alpha
Diffstat (limited to 'templates/show_videos.inc.php')
-rw-r--r--templates/show_videos.inc.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/show_videos.inc.php b/templates/show_videos.inc.php
index b58f741d..63a8d8ed 100644
--- a/templates/show_videos.inc.php
+++ b/templates/show_videos.inc.php
@@ -28,6 +28,7 @@ $web_path = Config::get('web_path');
<col id="col_title" />
<col id="col_codec" />
<col id="col_resolution" />
+ <col id="col_length" />
<col id="col_tags" />
</colgroup>
<tr class="th-top">
@@ -35,6 +36,7 @@ $web_path = Config::get('web_path');
<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_length"><?php echo _('Length'); ?></th>
<th class="cel_tags"><?php echo _('Tags'); ?></th>
</tr>
<?php
@@ -49,7 +51,7 @@ foreach ($object_ids as $video_id) {
<?php } //end foreach ?>
<?php if (!count($object_ids)) { ?>
<tr class="<?php echo flip_class(); ?>">
- <td colspan="5"><span class="fatalerror"><?php echo _('Not Enough Data'); ?></span></td>
+ <td colspan="6"><span class="fatalerror"><?php echo _('Not Enough Data'); ?></span></td>
</tr>
<?php } ?>
<tr class="th-bottom">