diff --git a/bam/templates/bam/profile.html b/bam/templates/bam/profile.html index c0dab0d..6f3bbd5 100644 --- a/bam/templates/bam/profile.html +++ b/bam/templates/bam/profile.html @@ -1,4 +1,34 @@ {% extends "bam/base.html" %} +{% block content-extra-head %} + +{% endblock %} {% block content %}

Welcome, {{ user.username }}!

+ +
+
Username
+
{{ user.username }}
+ {% if user.first_name %} +
First name
+
{{ user.first_name }}
+ {% endif %} + {% if user.last_name %} +
Last name
+
{{ user.last_name }}
+ {% endif %} +
Email address
+
{% if user.email %}{{ user.email }}{% else %}unset{% endif %}
+
{% endblock %}