{% extends 'global/master.tpl' %} {% set profileHidden = profile.checkPermission('SITE', 'DEACTIVATED') or profile.password.password_algo == 'nologin' or (profile.checkPermission('SITE', 'RESTRICTED') and (user.id != profile.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.username }}{% endif %}{% endblock %} {% block content %} {% if profileHidden %}

The requested user does not exist!

There are a few possible reasons for this:
{% else %}
{{ profile.username }}'s Avatar
{% if profile.mainRank > 1 and profile.checkBan|length < 1 %} {{ profile.userTitle }}

{{ profile.username }}

{% if profile.checkPremium[0] %}Tenshi {% endif %}{{ profile.country.short }} {{ profile.country.long }} {% if session.checkLogin %} {% endif %}
Joined {{ profile.elapsed.joined }}
{% if profile.dates.lastOnline < 1 %} {{ profile.username }} hasn't logged in yet. {% else %} Last online {{ profile.elapsed.lastOnline }} {% endif %}
{{ profile.username }} has {% if not profile.forumStats.posts %}no{% else %}{{ profile.forumStats.posts }}{% endif %} forum post{% if profile.forumStats.posts != 1 %}s{% endif %}. {% if profile.dates.birth != '0000-00-00' and profile.dates.birth|split('-')[0] > 0 %}
Age {{ profile.elapsed(' old').birth }} {% endif %} {% if profile.profileFields %}
{% if session.checkLogin %} {% for name,field in profile.profileFields %} {% endfor %}
{{ field.name }} {% if name == 'youtube' %} {% if field.youtubetype == true %}{{ profile.username }}'s Channel{% else %}{{ field.value }}{% endif %} {% else %} {% if field.islink %} {% endif %} {{ field.value }} {% if field.islink %} {% endif %} {% endif %}
{% else %} Log in to view the full profile! {% endif %} {% endif %} {% else %}

{{ profile.username }}

{% endif %}
Account Standing {% if profile.checkPermission('SITE', 'DEACTIVATED') %}

Deactivated

{% elseif profile.checkBan %}

Banned

{% elseif profile.checkPermission('SITE', 'RESTRICTED') %}

Restricted

{% elseif profile.getWarnings %}

Bad

{% else %}

Good

{% endif %} {% if profile.getWarnings %} {% for warning in profile.getWarnings %} {% endfor %}
Action Duration Reason
{{ warning.warning_action_text }} {{ warning.warning_length }} minute{% if warning.warning_length != 1 %}s{% endif %} {{ warning.warning_reason }}
{% endif %}
{% include 'profile/' ~ profileView ~ '.tpl' %}
{% endif %} {% endblock %}