clipbucket/upload/styles/cbv2new/layout/add_group_videos.html
Arslan Hassan 6f229b6aaf Fixed : Add Group videos listing
Fixed : Comment listing and actions
Fixed : View group videos
Added : v2.1 Installer
2011-02-14 12:55:46 +00:00

22 lines
No EOL
782 B
HTML

<div class="group_view">
{include file="$style_dir/blocks/group/group_header.html" group=$group}
<h2>{lang code='grp_add_vdo_msg'}</h2>
<form name="add_group_videos" id="add_group_videos" method="post" action="">
{foreach from=$usr_vids item=video}
{if $cbgroup->is_group_video($video.videoid,$group.group_id)}
{assign var='check_this' value='yes'}
{else}
{assign var='check_this' value=''}
{/if}
{include file="$style_dir/blocks/video.html" video=$video display_type='add_type'}
{/foreach}
<div class="clear"></div>
{include file="$style_dir/blocks/pagination.html"}
<div align="center">
<input type="submit" name="add_videos" id="add_videos" value="{lang code='grp_add_vdos'}" class="cb_button">
</div>
</form>
</div>