diff --git a/doc/source/topics/settings.rst b/doc/source/topics/settings.rst index 0bc2a27dae..8f24225851 100755 --- a/doc/source/topics/settings.rst +++ b/doc/source/topics/settings.rst @@ -1395,11 +1395,11 @@ If set to ``True``, this dashboard will be set as the default dashboard. Examples -------- -To disable the Router dashboard locally, create a file -``openstack_dashboard/local/enabled/_40_router.py`` with the following +To disable a dashboard locally, create a file +``openstack_dashboard/local/enabled/_40_dashboard-name.py`` with the following content:: - DASHBOARD = 'router' + DASHBOARD = '' DISABLED = True To add a Tuskar-UI (Infrastructure) dashboard, you have to install it, and then diff --git a/openstack_dashboard/local/enabled/_40_router.py.example b/openstack_dashboard/local/enabled/_50_settings.py.example similarity index 87% rename from openstack_dashboard/local/enabled/_40_router.py.example rename to openstack_dashboard/local/enabled/_50_settings.py.example index 36a888dd3b..7721edf72a 100644 --- a/openstack_dashboard/local/enabled/_40_router.py.example +++ b/openstack_dashboard/local/enabled/_50_settings.py.example @@ -1,5 +1,5 @@ # The name of the dashboard to be added to HORIZON['dashboards']. Required. -DASHBOARD = 'router' +DASHBOARD = 'settings' # If set to True, this dashboard will not be added to the settings. DISABLED = False