The announcements editor was never ported to frontend-app-authoring, and the announcements display was never ported to frontend-app-learner-dashboard. This announcements feature is rarely used, undocumented, non-a11y-friendly, and there were no volunteers to port it to the new frontends. It is the last remaining part of the legacy Studio "Maintenance" dashboard. So, we are removing it. BREAKING CHANGE: This removes... * Studio Maintenance dashboard legacy frontend * Studio Edit Announcements legacy frontend * The snippet of legacy learner dashboard which renders announcements * openedx/features/announcements djangoapp * The ENABLE_ANNOUNCEMENTS feature flag Not removed: * The announcements_announcement table from openedx/features/announcements . The table is most likely very small, as it is only populated by administrators. Removing it would be more labor for us and more risk of toil for operators than is worthwhile. Closes: https://github.com/openedx/edx-platform/issues/36263
30 lines
1.0 KiB
HTML
30 lines
1.0 KiB
HTML
<%page expression_filter="h"/>
|
|
<%namespace name='static' file='../static_content.html'/>
|
|
<%!
|
|
from django.conf import settings
|
|
from django.urls import reverse
|
|
from django.utils.translation import gettext as _
|
|
from edx_django_utils.monitoring import set_custom_attribute
|
|
from common.djangoapps.student.roles import GlobalStaff
|
|
%>
|
|
|
|
<h3 class="title">
|
|
<span class="label">
|
|
<span class="label-prefix sr-only">${_("Currently signed in as:")}</span>
|
|
<span class="account-username" title="${ user.username }">${ user.username }</span>
|
|
</span>
|
|
<span class="icon fa fa-caret-down ui-toggle-dd" aria-hidden="true"></span>
|
|
</h3>
|
|
<div class="wrapper wrapper-nav-sub">
|
|
<div class="nav-sub">
|
|
<ul>
|
|
<li class="nav-item nav-account-dashboard">
|
|
<a href="/">${_("{studio_name} Home").format(studio_name=settings.STUDIO_SHORT_NAME)}</a>
|
|
</li>
|
|
<li class="nav-item nav-account-signout">
|
|
<a class="action action-signout" href="${settings.FRONTEND_LOGOUT_URL}">${_("Sign Out")}</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|