{% extends "layout.html" %} {% block title %}Profile - {{ user.nickname }}{% endblock %} {% block content %}

 {{ user.nickname }}

{% if user.public %} {% if user.bio_text == None %} This user's profile bio is empty! {% else %} {{ user.bio_text }} {% endif %} {% else %} This user profile is set to private {% endif %} {% if user.id == g.user.id %} {% endif %}
{% if user.public %}
Current Hero
{{ user.random_hero['localized_name'] }} ({{ user.random_heroes.completed | length + 1 }} / {{ total_hero_pool() - user.random_heroes.completed|length }})

View A-Z Progress
{{ user.nickname }}
TS Points 0
Events Points 0
Forum Points 0
Last Seen {{ user.last_seen | js_datetime }}
Member Since {{ user.created | js_datetime }}
{% endif %}
{% endblock %} {% block pagescripts %} {% cache 60*700 %} {% endcache %} {% endblock %}