cb8e7c1f8f
Moves everything OpenStack-specific (dashboards, apis, etc.) into the openstack_dashboard project, achieving a much cleaner separation between the project-specific code and the generic Horizon framework code. Change-Id: I7235b41d449b26c980668fc3eb4360b24508717b
11 lines
450 B
HTML
11 lines
450 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>
|
|
{% if HORIZON_CONFIG.help_url %}
|
|
<a href="{{ HORIZON_CONFIG.help_url }}" target="_new">{% trans "Help" %}</a>
|
|
{% endif %}
|
|
<a href="{% url logout %}">{% trans "Sign Out" %}</a>
|
|
{% include "horizon/common/_region_selector.html" %}
|
|
</div>
|