{% 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'] }}

View A-Z Progress
{% endif %}
{% endblock %}