{% extends "base.html" %} {% block title %} {{ title }} {% endblock %} {% block content %} {% include 'menu.html' %} {% include 'flash.html' %}
{% if user.avatar %}
{% endif %}

{{ user.name }}

{% if user.email %}

Email: {{ user.email }}

{% endif %} {% if user.username %}

Username: {{ user.username }}

{% endif %} {% if user.password %}

Password: {{ user.password }}

{% endif %} {% if user.last_seen %}

Last seen: {{ user.last_seen }}

{% endif %}
{% endblock %}