{% extends "layout.html" %} {% block body %}

Welcome {{current_user.first_name + " " + current_user.last_name}}

Your details

Name {{ ((current_user.title + " ") if current_user.title else "") + current_user.first_name + " " + current_user.last_name }} {% if current_user.verified %} Edit {% endif %}
Email {{ current_user.email }} {% if current_user.verified %} Verified {% else %} Not verified
Send verification email
{% endif %}
Unique ID {{ current_user.id }}

Add note

My notes

{% for note in notes %}

{{ note.title}}

{{ note.body }}

{% else %}

You have no notes

{% endfor %}
{% endblock %}