templates: Show username in top navbar

Show the username of the user currently logged-in in the top navbar.
master v1.1.3-9
Javier Hernandez 2023-12-18 13:47:05 +01:00 committed by OpenGnSys Support Team
parent 869f15ecf0
commit 67cca9872a
1 changed files with 5 additions and 0 deletions

View File

@ -53,6 +53,11 @@
<ul class="nav navbar-nav navbar-right">
{% if current_user.is_authenticated %}
<li class="nav-item">
<span class="navbar-text">
{{ current_user.id }}
</span>
</li>
<li class="nav-item">
<a class="btn btn-danger" href="{{ url_for('logout') }}">{{ _('Logout') }}</a>
</li>