a11aa7ff62
Uses the openstack context preprocessor to pass the LOGOUT_URL from settings to templates and changes the 'Sign out' menu entry to redirect to it instead of the logout view directly. closes-bug: #1747149 Change-Id: Id17ffca6b5e24779433c3f19d009bb2a77f7b901
69 lines
1.9 KiB
HTML
69 lines
1.9 KiB
HTML
{% load i18n %}
|
|
{% load themes %}
|
|
|
|
<li class="dropdown user-menu">
|
|
<a data-toggle="dropdown" href="#" class="dropdown-toggle" role="button" aria-expanded="false">
|
|
<span class="fa fa-user"></span>
|
|
<span class="user-name">{{ request.user.username }}</span>
|
|
<span class="fa fa-caret-down"></span>
|
|
</a>
|
|
<ul id="editor_list" class="dropdown-menu dropdown-menu-right selection-menu">
|
|
<li>
|
|
<a href="{% url 'horizon:settings:user:index' %}" target="_self">
|
|
<span class="fa fa-cog"></span>
|
|
{% trans "Settings" %}
|
|
</a>
|
|
</li>
|
|
{% if HORIZON_CONFIG.bug_url %}
|
|
<li>
|
|
<a href="{{ HORIZON_CONFIG.bug_url }}" target="_blank">
|
|
<span class="fa fa-bug"></span>
|
|
{% trans "Report Bug" %}
|
|
</a>
|
|
</li>
|
|
{% endif %}
|
|
{% if HORIZON_CONFIG.help_url %}
|
|
<li>
|
|
<a href="{{ HORIZON_CONFIG.help_url }}" target="_blank">
|
|
<span class="fa fa-question-circle"></span>
|
|
{% trans "Help" %}
|
|
</a>
|
|
</li>
|
|
{% endif %}
|
|
|
|
{% for link in USER_MENU_LINKS %}
|
|
<li>
|
|
{% if link.external %}
|
|
<a href="{{ link.url }}">
|
|
{% else %}
|
|
<a href="{% url link.url %}">
|
|
{% endif %}
|
|
|
|
{% if link.icon_classes %}
|
|
<span class="fa {{ link.icon_classes | join:" "}}"></span>
|
|
{% else %}
|
|
<span class="fa fa-download"></span>
|
|
{% endif %}
|
|
{{ link.name }}
|
|
</a>
|
|
|
|
</li>
|
|
{% endfor %}
|
|
|
|
{% themes as available_themes %}
|
|
{% if available_themes and available_themes|length > 1 %}
|
|
<li class="divider"></li>
|
|
<li>
|
|
{% include 'header/_theme_list.html' %}
|
|
</li>
|
|
{% endif %}
|
|
<li class="divider"></li>
|
|
<li>
|
|
<a href="{{ LOGOUT_URL }}" target="_self">
|
|
<span class="fa fa-sign-out"></span>
|
|
{% trans "Sign Out" %}
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</li>
|