diff --git a/plinth/modules/help/help.py b/plinth/modules/help/help.py index 3ee86af0e..b37b7ba27 100644 --- a/plinth/modules/help/help.py +++ b/plinth/modules/help/help.py @@ -24,7 +24,6 @@ from apt.cache import Cache from django.http import Http404 from django.template.response import TemplateResponse from django.utils.translation import ugettext as _, ugettext_lazy -from stronghold.decorators import public from plinth import cfg, __version__ from plinth.menu import main_menu @@ -42,14 +41,12 @@ def init(): 100) -@public def index(request): """Serve the index page""" return TemplateResponse(request, 'help_index.html', {'title': _('Documentation and FAQ')}) -@public def about(request): """Serve the about page""" cache = Cache() @@ -63,7 +60,6 @@ def about(request): return TemplateResponse(request, 'help_about.html', context) -@public def manual(request): """Serve the manual page from the 'doc' directory""" try: diff --git a/plinth/templates/base.html b/plinth/templates/base.html index 79d9b0fb7..5d60d45bc 100644 --- a/plinth/templates/base.html +++ b/plinth/templates/base.html @@ -119,13 +119,13 @@