{% extends "base.html" %} {% block content %}

{{ show_user.username }}

{% if editable %} Edit Profile {% endif %} {% if show_user.profile.user_type != 0 %} {# Superhero Details #} {% else %} {# Ordinary person Details #} {% endif %}
First name {{ show_user.first_name }}
Last name {{ show_user.last_name }}
Bio {{ show_user.profile.bio }}
Age {{ show_user.profile.get_age }}
Superhero? {% if show_user.profile.user_type != 0 %} Yes {% else %} No {% endif %}
Origin {{ show_user.profile.origin }}
Address {{ show_user.profile.address }}
{% endblock %}