{% extends "base.html" %} {% block content %}
| 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 }} |