cosmetic change to base template:

moving separator
This commit is contained in:
georg.sinn-schirwitz
2025-08-30 13:27:17 +02:00
parent c4ca2a8288
commit a66e9a15e7

View File

@@ -18,11 +18,11 @@
<nav>
{% if username %}<span>Hi, {{ username }}</span> | {% endif %}
<a href="{{ url_for('index') }}">Home</a> |
<a href="{{ url_for('user_settings') }}">Preferences</a> {% if
current_user and current_user.is_admin %} |
<a href="{{ url_for('user_settings') }}">Preferences</a>
{% if current_user and current_user.is_admin %} |
<a href="{{ url_for('admin_taxonomy') }}">Taxonomy</a> |
<a href="{{ url_for('admin_users') }}">Users</a> {% endif %} | {% if
session.get('username') %}
<a href="{{ url_for('admin_users') }}">Users</a> {% endif %} {% if
session.get('username') %} |
<a href="{{ url_for('logout') }}">Logout</a> {% else %} |
<a href="{{ url_for('login') }}">Login</a>{% endif %}
</nav>