The url was renamed from session_language to update_language but it was still referred to in some html templates
109 lines
4.6 KiB
HTML
109 lines
4.6 KiB
HTML
## mako
|
|
|
|
<%page expression_filter="h" args="online_help_token, use_cookie_banner=False"/>
|
|
|
|
<%namespace name='static' file='../static_content.html'/>
|
|
<%namespace file='../main.html' import="login_query"/>
|
|
<%!
|
|
from django.urls import reverse
|
|
from django.utils.translation import gettext as _
|
|
import waffle
|
|
|
|
from lms.djangoapps.ccx.overrides import get_current_ccx
|
|
from openedx.core.djangolib.markup import HTML, Text
|
|
|
|
# App that handles subdomain specific branding
|
|
from lms.djangoapps.branding import api as branding_api
|
|
from openedx.core.djangoapps.lang_pref.api import header_language_selector_is_enabled, released_languages
|
|
from openedx.core.djangoapps.site_configuration import helpers as configuration_helpers
|
|
|
|
%>
|
|
|
|
## Provide a hook for themes to inject branding on top.
|
|
<%block name="navigation_top" />
|
|
|
|
<%
|
|
unsupported_browser_alert_versions = configuration_helpers.get_value('UNSUPPORTED_BROWSER_ALERT_VERSIONS', settings.FEATURES.get('UNSUPPORTED_BROWSER_ALERT_VERSIONS'))
|
|
%>
|
|
% if waffle.switch_is_active('enable_unsupported_browser_alert'):
|
|
<script>
|
|
var $buoop = {
|
|
notify:${unsupported_browser_alert_versions | n, decode.utf8},
|
|
api:5,
|
|
reminder:0
|
|
};
|
|
function $buo_f() {
|
|
var e = document.createElement("script");
|
|
e.src = "//browser-update.org/update.min.js";
|
|
document.body.appendChild(e);
|
|
};
|
|
try {document.addEventListener("DOMContentLoaded", $buo_f,false)}
|
|
catch(e){window.attachEvent("onload", $buo_f)}
|
|
</script>
|
|
% endif
|
|
|
|
<header class="global-header ${'slim' if course else ''}">
|
|
% if settings.FEATURES.get('ENABLE_COOKIE_POLICY_BANNER', use_cookie_banner):
|
|
${static.renderReact(
|
|
component="CookiePolicyBanner",
|
|
id="frontend-component-cookie-policy-banner",
|
|
props={}
|
|
)}
|
|
% endif
|
|
<div class="main-header">
|
|
<%include file="navbar-logo-header.html" args="online_help_token=online_help_token"/>
|
|
<div class="hamburger-menu" role="button" aria-label=${_("Options Menu")} aria-expanded="false" aria-controls="mobile-menu" tabindex="0">
|
|
<span class="line"></span>
|
|
<span class="line"></span>
|
|
<span class="line"></span>
|
|
<span class="line"></span>
|
|
</div>
|
|
% if user.is_authenticated:
|
|
<%include file="navbar-authenticated.html" args="online_help_token=online_help_token"/>
|
|
% else:
|
|
<%include file="navbar-not-authenticated.html" args="online_help_token=online_help_token"/>
|
|
% endif
|
|
</div>
|
|
<div class="mobile-menu hidden" aria-label=${_("More Options")} role="menu" id="mobile-menu"></div>
|
|
</header>
|
|
|
|
% if course:
|
|
<!--[if lte IE 9]>
|
|
<div class="ie-banner" aria-hidden="true">${Text(_('{begin_strong}Warning:{end_strong} Your browser is not fully supported. We strongly recommend using {chrome_link} or {ff_link}.')).format(
|
|
begin_strong=HTML('<strong>'),
|
|
end_strong=HTML('</strong>'),
|
|
chrome_link=HTML('<a href="https://www.google.com/chrome" rel="noopener" target="_blank">Chrome</a>'),
|
|
ff_link=HTML('<a href="http://www.mozilla.org/firefox" rel="noopener" target="_blank">Firefox</a>'),
|
|
)}</div>
|
|
<![endif]-->
|
|
% endif
|
|
|
|
% if settings.FEATURES.get('ENABLE_COOKIE_CONSENT', False):
|
|
<%include file="../widgets/cookie-consent.html" />
|
|
% endif
|
|
|
|
% if header_language_selector_is_enabled():
|
|
<% languages = released_languages() %>
|
|
% if len(languages) > 1:
|
|
<form action="/i18n/setlang/" method="post" class="settings-language-form" id="language-settings-form">
|
|
<input type="hidden" id="csrf_token" name="csrfmiddlewaretoken" value="${csrf_token}">
|
|
% if user.is_authenticated:
|
|
<input title="preference api" type="hidden" class="url-endpoint" value="${reverse('preferences_api', kwargs={'username': user.username})}" data-user-is-authenticated="true">
|
|
% else:
|
|
<input title="session update url" type="hidden" class="url-endpoint" value="${reverse('update_language')}" data-user-is-authenticated="false">
|
|
% endif
|
|
<label><span class="sr">${_("Choose Language")}</span>
|
|
<select class="input select language-selector" id="settings-language-value" name="language">
|
|
% for language in languages:
|
|
% if language[0] == LANGUAGE_CODE:
|
|
<option value="${language[0]}" selected="selected">${language[1]}</option>
|
|
% else:
|
|
<option value="${language[0]}" >${language[1]}</option>
|
|
% endif
|
|
% endfor
|
|
</select>
|
|
</label>
|
|
</form>
|
|
% endif
|
|
% endif
|