
Moved the tests to the horizon portion since they test core functionality. This also required moving some of the templates, etc. that belong in horizon to their proper homes. Change-Id: I7d9758845b81e4b8bcf1ffaaff4f6e237b4fe9f8
8 lines
322 B
HTML
8 lines
322 B
HTML
{% load i18n %}
|
|
<div id="user_info" class="pull-right">
|
|
<span>{% trans "Logged in as" %}: {{ request.user.username }}</span>
|
|
<a href="{% url horizon:settings:user:index %}">{% trans "Settings" %}</a>
|
|
<a href="{% url logout %}">{% trans "Sign Out" %}</a>
|
|
{% include "horizon/common/_region_selector.html" %}
|
|
</div>
|