feat(ui): display user email on home page
Updated the home page greeting to show the user's email instead of their first name. This change improves user identification and ensures consistency when the first name is not provided.
This commit is contained in:
parent
4b33f17a04
commit
31567f7bb1
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@
|
||||||
<h2>Get Started</h2>
|
<h2>Get Started</h2>
|
||||||
{% if user.is_authenticated %}
|
{% if user.is_authenticated %}
|
||||||
<p>
|
<p>
|
||||||
Welcome back, {{ user.first_name }}! Use the navigation links above to
|
Welcome back, {{ user.email }}! Use the navigation links above to
|
||||||
manage your suffixes, and identifiers.
|
manage your suffixes, and identifiers.
|
||||||
</p>
|
</p>
|
||||||
<a class="btn btn-primary" href="{% url 'suffix_list' %}">Manage Suffixes</a>
|
<a class="btn btn-primary" href="{% url 'suffix_list' %}">Manage Suffixes</a>
|
||||||
|
|
Loading…
Reference in a new issue