2009-12-29 11:28:48 +00:00
|
|
|
{include file="$style_dir/global_header.html"}
|
|
|
|
<body>
|
2010-03-03 13:58:09 +00:00
|
|
|
{include file="$style_dir/blocks/view_channel/channel_global.html" }
|
2011-01-27 12:42:54 +00:00
|
|
|
<div id="container" class="container clearfix" style="background-color:none">
|
|
|
|
{include file="$style_dir/header.html"}
|
|
|
|
<div style="height:10px;"></div>
|
2009-12-29 11:28:48 +00:00
|
|
|
{include file="$style_dir/message.html"}
|
2011-01-27 12:42:54 +00:00
|
|
|
<div class="channel_inner_box" id="result_cont" style="display:none; background:#eee;"></div>
|
|
|
|
<div class="moveL clearfix" style="width:270px; padding:0px 5px;">
|
|
|
|
{include file="$style_dir/blocks/view_channel/channel_left.html"}
|
|
|
|
</div> <!-- this is left side -->
|
|
|
|
<div class="moveL clearfix" style="width:700px; padding:0px 5px; ">
|
|
|
|
<div id="channelDetailsBox" class="clearfix channelBox" style="border:1px solid #ccc; padding:0px 6px 6px;">
|
|
|
|
{if $mode == '' || $mode == 'contacts'}
|
2010-02-10 05:54:08 +00:00
|
|
|
{lang code='users_contacts' assign='users_contacts'}
|
2011-01-27 12:42:54 +00:00
|
|
|
<h2>{$users_contacts|sprintf:$u.username}</h2>
|
2009-12-29 11:28:48 +00:00
|
|
|
{if $friends}
|
|
|
|
{foreach from=$friends item=friend}
|
|
|
|
{if $u.userid!=$friend.userid}
|
|
|
|
{assign var=user_detail value=$userquery->get_user_details($friend.userid)}
|
|
|
|
{else}
|
|
|
|
{assign var=user_detail value=$userquery->get_user_details($friend.contact_userid)}
|
|
|
|
{/if}
|
|
|
|
{include file="$style_dir/blocks/user.html" user=$user_detail}
|
|
|
|
{/foreach}
|
|
|
|
{else}
|
|
|
|
<em>This user has no contacts</em>
|
|
|
|
{/if}
|
2011-01-27 12:42:54 +00:00
|
|
|
{else}
|
|
|
|
<h2>{$heading}</h2>
|
|
|
|
{if $userSubs}
|
|
|
|
{foreach from=$userSubs item=item}
|
|
|
|
{include file="$style_dir/blocks/user.html" user=$item}
|
|
|
|
{/foreach}
|
|
|
|
{/if}
|
|
|
|
{/if}
|
2009-12-29 11:28:48 +00:00
|
|
|
</div>
|
2011-01-27 12:42:54 +00:00
|
|
|
</div> <!-- this is right side -->
|
|
|
|
</div> <!-- container end -->
|
|
|
|
<div class="clearfix" style="height:10px"></div>
|
|
|
|
<div id="footer" class="clearfix" style="margin-top:0px;">
|
|
|
|
<div class="footer">
|
|
|
|
© {$title} {$smarty.now|date_format:"%Y"}
|
2009-12-29 11:28:48 +00:00
|
|
|
</div>
|
2011-01-27 12:42:54 +00:00
|
|
|
</div>
|
2009-12-29 11:28:48 +00:00
|
|
|
</body>
|
|
|
|
</html>
|