diff options
Diffstat (limited to 'templates/show_videos.inc.php')
-rw-r--r-- | templates/show_videos.inc.php | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/templates/show_videos.inc.php b/templates/show_videos.inc.php index 256fe682..7b4f6c75 100644 --- a/templates/show_videos.inc.php +++ b/templates/show_videos.inc.php @@ -1,5 +1,5 @@ <?php -/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */ +/* vim:set softtabstop=4 shiftwidth=4 expandtab: */ /** * * LICENSE: GNU General Public License, version 2 (GPLv2) @@ -34,37 +34,37 @@ $web_path = Config::get('web_path'); <col id="col-action" /> </colgroup> <tr class="th-top"> - <th class="cel_add"><?php echo T_('Add'); ?></th> - <th class="cel_title"><?php echo Ajax::text('?page=browse&action=set_sort&type=video&sort=title', T_('Title'),'sort_video_title'); ?></th> - <th class="cel_codec"><?php echo Ajax::text('?page=browse&action=set_sort&type=video&sort=codec', T_('Codec'),'sort_video_codec'); ?></th> - <th class="cel_resolution"><?php echo Ajax::text('?page=browse&action=set_sort&type=video&sort=resolution', T_('Resolution'),'sort_video_rez'); ?></th> - <th class="cel_length"><?php echo Ajax::text('?page=browse&action=set_sort&type=video&sort=length', T_('Time'),'sort_video_length'); ?></th> - <th class="cel_tags"><?php echo T_('Tags'); ?></th> - <th class="cel_action"><?php echo T_('Action'); ?></th> + <th class="cel_add"><?php echo T_('Add'); ?></th> + <th class="cel_title"><?php echo Ajax::text('?page=browse&action=set_sort&type=video&sort=title', T_('Title'),'sort_video_title'); ?></th> + <th class="cel_codec"><?php echo Ajax::text('?page=browse&action=set_sort&type=video&sort=codec', T_('Codec'),'sort_video_codec'); ?></th> + <th class="cel_resolution"><?php echo Ajax::text('?page=browse&action=set_sort&type=video&sort=resolution', T_('Resolution'),'sort_video_rez'); ?></th> + <th class="cel_length"><?php echo Ajax::text('?page=browse&action=set_sort&type=video&sort=length', T_('Time'),'sort_video_length'); ?></th> + <th class="cel_tags"><?php echo T_('Tags'); ?></th> + <th class="cel_action"><?php echo T_('Action'); ?></th> </tr> <?php /* Foreach through every artist that has been passed to us */ foreach ($object_ids as $video_id) { - $video = new Video($video_id); - $video->format(); + $video = new Video($video_id); + $video->format(); ?> <tr id="video_<?php echo $video->id; ?>" class="<?php echo UI::flip_class(); ?>"> - <?php require Config::get('prefix') . '/templates/show_video_row.inc.php'; ?> + <?php require Config::get('prefix') . '/templates/show_video_row.inc.php'; ?> </tr> <?php } //end foreach ?> <?php if (!count($object_ids)) { ?> <tr class="<?php echo UI::flip_class(); ?>"> - <td colspan="7"><span class="fatalerror"><?php echo T_('Not Enough Data'); ?></span></td> + <td colspan="7"><span class="fatalerror"><?php echo T_('Not Enough Data'); ?></span></td> </tr> <?php } ?> <tr class="th-bottom"> - <th class="cel_add"><?php echo T_('Add'); ?></th> + <th class="cel_add"><?php echo T_('Add'); ?></th> <th class="cel_title"><?php echo T_('Title'); ?></th> - <th class="cel_codec"><?php echo T_('Codec'); ?></th> - <th class="cel_resolution"><?php echo T_('Resolution'); ?></th> - <th class="cel_length"><?php echo Ajax::text('?page=browse&action=set_sort&type=video&sort=length', T_('Time'),'sort_video_length_bottom'); ?></th> - <th class="cel_tags"><?php echo T_('Tags'); ?></th> - <th class="cel_action"><?php echo T_('Action'); ?></th> + <th class="cel_codec"><?php echo T_('Codec'); ?></th> + <th class="cel_resolution"><?php echo T_('Resolution'); ?></th> + <th class="cel_length"><?php echo Ajax::text('?page=browse&action=set_sort&type=video&sort=length', T_('Time'),'sort_video_length_bottom'); ?></th> + <th class="cel_tags"><?php echo T_('Tags'); ?></th> + <th class="cel_action"><?php echo T_('Action'); ?></th> </tr> </table> <?php require Config::get('prefix') . '/templates/list_header.inc.php'; ?> |