X-Git-Url: http://git.datanom.net/wpp.git/blobdiff_plain/06d96c2aaa206c47d6040716f25c8c65f6cf29c4..047d4d29754ed04bb696cc6dad3c43084290820b:/app/templates/user.html diff --git a/app/templates/user.html b/app/templates/user.html new file mode 100644 index 0000000..f90b69b --- /dev/null +++ b/app/templates/user.html @@ -0,0 +1,22 @@ +{% 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 %}