2014-04-10 12:41:07 +00:00
|
|
|
{lang code='channel' assign='object_type'}
|
|
|
|
{include file="$style_dir/global_header.html"}
|
|
|
|
{include file="$style_dir/header.html"}
|
|
|
|
<div class="container">
|
|
|
|
<div class="cb-box marginBottom">
|
|
|
|
<div class="row">
|
2014-04-11 06:55:02 +00:00
|
|
|
<span style="margin-left: 24px">
|
|
|
|
{assign var=category value=$userquery->get_category($u.category)}
|
|
|
|
{$u.username|capitalize}</a> ({$category.category_name})
|
|
|
|
<div class="btn-group">
|
|
|
|
{if !$isSubscribed && $p.allow_subscription!='no'}
|
2014-04-11 07:02:03 +00:00
|
|
|
<button class="btn btn-primary btn-sm" onclick="subscriber('{$u.userid}','subscribe_user','video_detail_result_cont')">{lang code='subscribe'}</button>
|
2014-04-11 06:55:02 +00:00
|
|
|
{elseif $isSubscribed}
|
|
|
|
<a class="btn btn-primary btn-sm" href="javascript:void(0)"
|
|
|
|
onClick="subscriber('{$u.userid}','unsubscribe_user','result_cont')">{lang code='unsubscribe'}</a>
|
|
|
|
{/if}
|
|
|
|
|
|
|
|
{assign var='channel_action_links' value=$userquery->get_channel_action_links($u)}
|
|
|
|
|
|
|
|
{foreach from=$channel_action_links item=link key=link_title}
|
2014-04-11 07:15:46 +00:00
|
|
|
<a class="btn btn-primary btn-sm" href="edit_account.php?mode=block_users" {if $link.onclick}onClick="{$link.onclick}"{/if}>{$link_title}</a>
|
2014-04-11 06:55:02 +00:00
|
|
|
{/foreach}
|
|
|
|
</div>
|
|
|
|
</span>
|
2014-04-11 07:02:03 +00:00
|
|
|
<div class="action_box" id="video_detail_result_cont" style="display:none; margin-left: 25px"></div>
|
2014-04-11 06:55:02 +00:00
|
|
|
|
|
|
|
<hr style="margin-bottom: 6px; margin-top: 8px">
|
2014-04-10 12:41:07 +00:00
|
|
|
<div class="col-md-3">
|
|
|
|
{include file="$style_dir/blocks/view_channel/channel_left.html"}
|
|
|
|
</div>
|
|
|
|
<div class="col-md-9">
|
2014-04-11 07:10:35 +00:00
|
|
|
<h3>User Videos </h3>
|
2014-04-10 12:41:07 +00:00
|
|
|
{section name=v_list loop=$videos}
|
|
|
|
{include file="$style_dir/blocks/video.html" video=$videos[v_list]}
|
|
|
|
{/section}
|
|
|
|
<div class="clearfix"></div>
|
|
|
|
<div class="col-md-4 pull-right">
|
|
|
|
{include file="$style_dir/blocks/pagination.html"}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="footer">
|
|
|
|
© {$title} {$smarty.now|date_format:"%Y"}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|