From 5b58f0597dd2019e4004e9903bcd4d768e49a00c Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Thu, 10 Jan 2019 13:56:08 -0800 Subject: [PATCH] cockpit: Add link to manual page Signed-off-by: Sunil Mohan Adapa Reviewed-by: Joseph Nuthalapati --- plinth/modules/cockpit/__init__.py | 2 ++ plinth/modules/cockpit/urls.py | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) 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'), ]