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

{{ user.username }}'s profile

{{ user.username }}

Edit profile

Name

{{ user.first_name }}

Last name

{{ user.last_name }}

Email

{{ user.email }}

Stats

Case opened:
{{ user.owned_cases.all|length }}
My analyses:
{{ user.owned_images.all|length }}
My hash lists:
{{ user.owned_hashes.all|length }}

Last login

{{ user.last_login }}

Account created

{{ user.date_joined }}

Account active

{%if user.is_active%} {%else%} {%endif%}

Superuser

{%if user.is_superuser%} {%else%} {%endif%}

Staff

{% if user.is_staff %} {% else %} {%endif%}
{% endblock %}