Move connected as item in navbar

This commit is contained in:
Edgar P. Burkhart 2024-01-04 18:45:17 +01:00
parent 63258147ee
commit 7369b36ab1
Signed by: edpibu
GPG Key ID: 9833D3C5A25BD227
1 changed files with 3 additions and 5 deletions

View File

@ -57,6 +57,9 @@
{{ "search"|remix }}
</a>
</li>
<li>
{% blocktranslate %}Logged in as <strong>{{ user }}</strong>{% endblocktranslate %}
</li>
<li>
<a href="{% url "logout" %}" accesskey="l">
<span>{% translate "Log out" %}</span>
@ -70,11 +73,6 @@
</li>
{% endif %}
</ul>
{% if user.is_authenticated %}
<p>
{% blocktranslate %}Logged in as <strong>{{ user }}</strong>{% endblocktranslate %}
</p>
{% endif %}
</nav>
{% endspaceless %}
{% endblock %}