Blinkenbunt Account Manager
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

40 lines
1.0 KiB

{% extends "bam/base.html" %}
{% block content-extra-head %}
<style>
dt {
padding-top: 0.5em;
color: #999999;
font-size: 80%;
}
dd {
margin-left: 0px;
}
.profile-value-meta {
font-style: italic;
}
</style>
{% endblock %}
{% block content %}
<h1>Welcome, {{ user.username }}!</h1>
<dl>
<dt>Username</dt>
<dd>{{ user.username }}</dd>
{% if user.first_name %}
<dt>First name</dt>
<dd>{{ user.first_name }}</dd>
{% endif %}
{% if user.last_name %}
<dt>Last name</dt>
<dd>{{ user.last_name }}</dd>
{% endif %}
<dt>Email address</dt>
<dd>{% if user.email %}{{ user.email }}{% else %}<span id="profile-value-meta">unset</span>{% endif %}</dd>
<dt>Password recovery email address</dt>
<dd>{% if user.account.hashed_email %}<span class="profile-value-meta">&#x2714; configured</span>{% else %}<span class="profile-value-meta">&#x2716; not configured</span>{% endif %}</dd>
</dl>
{% endblock %}