2015-10-11 23:37:54 +00:00
{ % extends 'global/master.tpl' % }
{ % set profileHidden = profile . checkPermission ( 'SITE' , 'DEACTIVATED' ) or profile . data . password_algo = = 'nologin' or ( profile . checkPermission ( 'SITE' , 'RESTRICTED' ) and ( user . data . user_id ! = profile . data . user_id and not user . checkPermission ( 'MANAGE' , 'USE_MANAGE' ) ) ) % }
{ % set noUserpage = profile . userPage | length < 1 % }
{ % set profileView = noUserpage and profileView = = 'index' ? 'comments' : profileView % }
{ % block title % } { % if profileHidden % } User not found! { % else % } Profile of { { profile . data . username } } { % endif % } { % endblock % }
{ % block content % }
{ % if profileHidden % }
<div class="userNotFound">
<h1 class="sectionHead">user not found!</h1>
There are a few possible reasons for this:
<ul>
<li>They changed their username.</li>
<li>They may have been <a href=" { { urls . format ( 'SITE_FAQ' ) } } #abyss" class="default">abyss'd</a>.</li>
<li>You made a typo.</li>
<li>They never existed.</li>
</ul>
</div>
2015-10-11 22:11:18 +00:00
{ % else % }
<div class="profile" id="u { { profile . data . user_id } } ">
2015-10-12 17:28:34 +00:00
<div class="profileHeaderContent profileHeader" style="background-image: linear-gradient(0deg, transparent 0%, transparent 12%, rgba(0, 0, 0, .7) 30%, transparent 76%, transparent 100%), url(' { { urls . format ( 'IMAGE_HEADER' , [ profile . data . user_id ] ) } } ');">
<div class="userAvatar" style="background-image: url(' { { urls . format ( 'IMAGE_AVATAR' , [ profile . data . user_id ] ) } } ');"> { { profile . data . username } } 's Avatar</div>
<div class="userData">
<div class="headerLeft">
2015-10-11 23:37:54 +00:00
<div class="profileUsername" style="color: { { profile . colour } } ;" { % if profile . getUsernameHistory % } title="Known as { { profile . getUsernameHistory [ 0 ] [ 'username_old' ] } } before { { profile . getUsernameHistory [ 0 ] [ 'change_time' ] | date ( sakura . dateFormat ) } } ." { % endif % } >
2015-10-11 22:11:18 +00:00
{ { profile . data . username } }
</div>
2015-10-12 17:28:34 +00:00
<div class="profileUserTitle">
2015-10-11 22:11:18 +00:00
{ { profile . userTitle } }
</div>
</div>
2015-10-12 17:28:34 +00:00
<div class="headerRight">
<div>Joined <span title=" { { profile . data . user_registered | date ( sakura . dateFormat ) } } "> { { profile . elapsed . joined } } </span></div>
<div> { % if profile . data . user_last_online < 1 % } User hasn't logged in yet. { % else % } Last Active <span title=" { { profile . data . user_last_online | date ( sakura . dateFormat ) } } "> { { profile . elapsed . lastOnline } } </span> { % endif % } </div>
</div>
2015-10-11 22:11:18 +00:00
</div>
</div>
2015-10-12 17:28:34 +00:00
<div class="profileContainer profileContent">
2015-10-11 22:11:18 +00:00
<div class="userDataBar">
{ % if not profile . checkPermission ( 'SITE' , 'DEACTIVATED' ) and ( profile . checkPremium [ 0 ] or profile . checkPermission ( 'MANAGE' , 'USE_MANAGE' ) ) % }
<div class="profilePlatform hierarchyContainer">
<div class="inner">
<ul class="hierarchies">
{ % if profile . checkPremium [ 0 ] % }
<li class="tenshi">Tenshi</li>
{ % endif % }
{ % if profile . checkPermission ( 'MANAGE' , 'USE_MANAGE' ) % }
<li class="staff">Staff</li>
{ % endif % }
{ % if false % }
<li class="developer">Developer</li>
{ % endif % }
{ % if false % }
<li class="alumnii">Alumnii</li>
{ % endif % }
</ul>
</div>
</div>
<div class="profilePlatform userAccounts">
<div class="inner">
{ % if session . checkLogin % }
{ % if profile . profileFields % }
{ % for name , field in profile . profileFields % }
<div class="field">
<div> { { field . name } } </div>
<div>
{ % if name = = 'youtube' % }
<a href="https://youtube.com/ { % if field . youtubetype = = 'true' % } channel { % else % } user { % endif % } / { { field . value } } " class="default"> { % if field . youtubetype = = 'true' % } { { profile . data . username } } 's Channel { % else % } { { field . value } } { % endif % } </a>
{ % else % }
{ % if field . islink % }
<a href=" { { field . link } } ">
{ % endif % }
{ { field . value } }
{ % if field . islink % }
</a>
{ % endif % }
{ % endif % }
</div>
<div class="clear"></div>
</div>
{ % endfor % }
{ % else % }
<div class="noAccounts">
<div class="fa fa-question"></div>
<div class="notif">This user has not set any links yet.</div>
</div>
{ % endif % }
{ % else % }
<div class="noAccounts">
<div class="fa fa-exclamation-circle"></div>
<div class="notif">Log in to view the full profile.</div>
</div>
{ % endif % }
</div>
</div>
{ % endif % }
<div class="profilePlatform accountStanding">
<div class="inner">
<div class="title">Account Standing</div>
{ % if profile . checkPermission ( 'SITE' , 'DEACTIVATED' ) % }
<div class="standing" style="color: #800;">Deactivated</div>
{ % elseif profile . checkBan % }
<h2 class="standing" style="color: #222;">Banned</h2>
{ % else % }
{ % if profile . getWarnings % }
<div class="standing" style="color: #A22;">Bad</div>
{ % else % }
<div class="standing" style="color: #2A2;">Good</div>
{ % endif % }
{ % endif % }
{ % if profile . getWarnings % }
<div>This user has <b> { { profile . getWarnings | length } } </b> warning { % if profile . getWarnings | length ! = 1 % } s { % endif % } !</div>
<div>After <b>10 warnings</b> a user may be permanently banned.</div>
{ % endif % }
</div>
</div>
</div>
2015-10-12 17:28:34 +00:00
<div class="profileMain">
2015-10-11 22:11:18 +00:00
{ % if not profile . checkPermission ( 'SITE' , 'DEACTIVATED' ) % }
<div class="statsRow">
2015-10-12 17:28:34 +00:00
{ % if profileView ! = ( noUserpage ? 'comments' : 'index' ) % }
<div class="profilePlatform">
<a class="inner" title="Userpage" href=" { { urls . format ( 'USER_PROFILE' , [ profile . data . user_id ] ) } } ">
<div class="fa fa-user"></div>
</a>
</div>
{ % endif % }
{ % if profileView ! = 'friends' % }
2015-10-11 22:11:18 +00:00
<div class="profilePlatform">
2015-10-12 17:28:34 +00:00
<a class="inner" title="Friends" href=" { { urls . format ( 'USER_FRIENDS' , [ profile . data . user_id ] ) } } ">
<div class="fa fa-user-plus"></div>
2015-10-11 22:11:18 +00:00
<div class="count"> { { profile . getFriends | length } } </div>
</a>
</div>
2015-10-12 17:28:34 +00:00
{ % endif % }
{ % if profileView ! = 'groups' % }
2015-10-11 22:11:18 +00:00
<div class="profilePlatform">
2015-10-12 17:28:34 +00:00
<a class="inner" title="Groups" href=" { { urls . format ( 'USER_GROUPS' , [ profile . data . user_id ] ) } } ">
<div class="fa fa-users"></div>
<div class="count">0</div>
2015-10-11 22:11:18 +00:00
</a>
</div>
2015-10-12 17:28:34 +00:00
{ % endif % }
{ % if profileView ! = 'comments' % }
<div class="profilePlatform">
<a class="inner" title="Comments" href=" { { urls . format ( 'USER_COMMENTS' , [ profile . data . user_id ] ) } } ">
<div class="fa fa-comments"></div>
<div class="count"> { { profile . profileComments . count } } </div>
</a>
</div>
{ % endif % }
{ % if profileView ! = 'threads' % }
<div class="profilePlatform">
<a class="inner" title="Threads" href=" { { urls . format ( 'USER_THREADS' , [ profile . data . user_id ] ) } } ">
<div class="fa fa-list"></div>
<div class="count"> { { profile . forumStats . topics } } </div>
</a>
</div>
{ % endif % }
{ % if profileView ! = 'posts' % }
<div class="profilePlatform">
<a class="inner" title="Posts" href=" { { urls . format ( 'USER_POSTS' , [ profile . data . user_id ] ) } } ">
<div class="fa fa-reply"></div>
<div class="count"> { { profile . forumStats . posts } } </div>
</a>
2015-10-11 22:11:18 +00:00
</div>
2015-10-12 17:28:34 +00:00
{ % endif % }
2015-10-11 22:11:18 +00:00
</div>
2015-10-11 23:37:54 +00:00
<div class="userPage profilePlatform">
<div class="inner">
{ % include 'profile/' ~ profileView ~ '.tpl' % }
</div>
2015-10-11 22:11:18 +00:00
</div>
{ % endif % }
</div>
</div>
</div>
{ % endif % }
2015-10-11 23:37:54 +00:00
{ % endblock % }