{% extends "base.html" %} {% load staticfiles %} {% load thumbnail %} {% block title %}{{ block.super }}Profile{% endblock %} {% block container %}

{{ show_user.get_full_name }}

{% if editable %} Edit Profile {% endif %}
  • Profile
  • Email: {{ show_user.email|default:"missing" }} {% if show_user.profile.email_verified %} Verified {% else %} Not Verified {% endif %}
  • Joined {{ show_user.date_joined }}
  • Last seen {{ show_user.last_login }}
{{ show_user.get_full_name }}'s Profile {% if show_user.profile.slug %} Permalink {{ show_user.profile.get_absolute_url }} {% else %} No permalink. See this issue. {% endif %}
Bio: {{ show_user.profile.bio }}
{% endblock %}