diff --git a/plinth/modules/cockpit/__init__.py b/plinth/modules/cockpit/__init__.py index cf6446e8a..c283defb7 100644 --- a/plinth/modules/cockpit/__init__.py +++ b/plinth/modules/cockpit/__init__.py @@ -59,6 +59,8 @@ description = [ service = None +manual_page = 'Cockpit' + def init(): """Intialize the module.""" diff --git a/plinth/modules/cockpit/urls.py b/plinth/modules/cockpit/urls.py index b002683c7..0cdea5e49 100644 --- a/plinth/modules/cockpit/urls.py +++ b/plinth/modules/cockpit/urls.py @@ -30,6 +30,7 @@ urlpatterns = [ diagnostics_module_name='cockpit', description=cockpit.description, show_status_block=True, - clients=cockpit.clients), + clients=cockpit.clients, + manual_page=cockpit.manual_page), name='index'), ]