diff --git a/plinth/modules/help/views.py b/plinth/modules/help/views.py index a020252b7..cabbb0bfc 100644 --- a/plinth/modules/help/views.py +++ b/plinth/modules/help/views.py @@ -16,7 +16,7 @@ from django.urls import reverse from django.utils.translation import get_language_from_request from django.utils.translation import gettext as _ -from plinth import __version__, cfg +from plinth import __version__, cfg, menu from plinth.modules.upgrades import views as upgrades_views from . import privileged @@ -24,8 +24,11 @@ from . import privileged def index(request): """Serve the index page""" - return TemplateResponse(request, 'help_index.html', - {'title': _('Documentation and FAQ')}) + menu_items = menu.main_menu.active_item(request).sorted_items() + return TemplateResponse(request, 'help_index.html', { + 'title': _('Documentation and FAQ'), + 'menu_items': menu_items + }) def contribute(request): diff --git a/plinth/templates/system.html b/plinth/templates/system.html index 7bef3e372..fbd15a31b 100644 --- a/plinth/templates/system.html +++ b/plinth/templates/system.html @@ -1,4 +1,4 @@ -{% extends 'cards.html' %} +{% extends 'base.html' %} {% comment %} # SPDX-License-Identifier: AGPL-3.0-or-later {% endcomment %} @@ -18,7 +18,7 @@