diff options
author | Magnus Hagander | 2015-01-22 14:04:09 +0000 |
---|---|---|
committer | Magnus Hagander | 2015-01-22 14:04:09 +0000 |
commit | 0c58317302c0eeea57dcbafa28b5150b82eba3de (patch) | |
tree | 2f02f27f4780e89b1bd9918ceb7f6f1477328ad8 /pgcommitfest/commitfest/templates | |
parent | c80b7e1d58f3bac19a6df99ddf3d4bfc50e6a2ee (diff) |
Implement support for secondary email addresses
Each user can add a secondary email (well, more than one) and then pick
one of those when sending email.
Addresses are validated by sending a token to the newly added address,
with a link to click to confirm it. Only a fully confirmed address can
actually be used.
Diffstat (limited to 'pgcommitfest/commitfest/templates')
-rw-r--r-- | pgcommitfest/commitfest/templates/base.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pgcommitfest/commitfest/templates/base.html b/pgcommitfest/commitfest/templates/base.html index e60f3a9..a22b1ee 100644 --- a/pgcommitfest/commitfest/templates/base.html +++ b/pgcommitfest/commitfest/templates/base.html @@ -20,7 +20,7 @@ <li class="active">{{title}}</li> <li class="pull-right active"> {%if user.is_authenticated%} - Logged in as {{user}} (<a href="/https/git.postgresql.org/account/logout/">log out</a>{%if user.is_staff%} or access <a href="/https/git.postgresql.org/admin/">administration</a>{%endif%}) + Logged in as {{user}} (<a href="/https/git.postgresql.org/account/profile/">edit profile</a> | <a href="/https/git.postgresql.org/account/logout/">log out</a>{%if user.is_staff%} | <a href="/https/git.postgresql.org/admin/">administration</a>{%endif%}) {%else%} <a href="/https/git.postgresql.org/account/login/?next={{request.path}}">Log in</a> {%endif%} |