1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-05-20 17:58:24 +03:00
ifhub.club/templates/skin/developer/actions/ActionProfile/sidebar.tpl
2010-02-08 02:10:30 +00:00

26 lines
921 B
Smarty

{if $oUserCurrent && $oUserCurrent->getId()!=$oUserProfile->getId()}
<div class="block">
<ul>
{include file='actions/ActionProfile/friend_item.tpl' oUserFriend=$oUserProfile->getUserFriend()}
<li><a href="{router page='talk'}add/?talk_users={$oUserProfile->getLogin()}">{$aLang.user_write_prvmsg}</a></li>
</ul>
</div>
{/if}
{if $oUserProfile->getProfileIcq() || $oUserProfile->getProfileFoto()}
<div class="block nostyle">
{if $oUserProfile->getProfileFoto()}
<img src="{$oUserProfile->getProfileFoto()}" alt="photo" /><br /><br />
{/if}
{if $oUserProfile->getProfileIcq()}
<strong>{$aLang.profile_social_contacts}</strong>
<ul>
{if $oUserProfile->getProfileIcq()}
<li><strong>ICQ:</strong> <a href="http://www.icq.com/people/about_me.php?uin={$oUserProfile->getProfileIcq()|escape:'html'}" target="_blank">{$oUserProfile->getProfileIcq()}</a></li>
{/if}
</ul>
{/if}
</div>
{/if}