Chapter 5. Customizing the Dashboard
The look and feel of the OpenStack dashboard can be customized using the settings defined in /openstack-dashboard/openstack_dashboard/local/local_settings.py. You can customize the following elements of the dashboard:
- HTML title
- Site branding link
- Help URL
In addition, you can create a custom theme and further customize the look and feel of the dashboard, including the following components:
- Logo
- Site colors
- Stylesheets
The OpenStack dashboard installs a default theme. If you do not want to use this theme, remove it using the following commands:
# cd /usr/share/openstack-dashboard/openstack_dashboard/enabled # cp _99_customization.py _999_remove_theme.py # echo "DISABLED = True" >> _999_remove_theme.py # systemctl restart httpd
For a director deployment, you will need to log in to each controller node as heat-admin to make the changes.
5.1. Logo, Site Colors, and Stylesheets
-
Copy the entire RCUE theme directory
/usr/share/openstack-dashboard/openstack_dashboard/themes/rcueto a new location, for example/usr/share/openstack-dashboard/openstack_dashboard/themes/mytheme. Create a new file
/etc/openstack-dashboard/local_settings.d/_12_mytheme_theme.pyand add the following line:AVAILABLE_THEMES = [('mytheme', 'My Custom Theme', 'themes/mytheme')]Change all paths inside
/usr/share/openstack-dashboard/openstack_dashboard/themes/mytheme/static/replacingrcuewith the newmythemename.To change a theme's colors, graphics, fonts, among others, edit the files in `/usr/share/openstack-dashboard/openstack_dashboard/themes/mytheme`.
If you deployed OpenStack with High Availability, restart the httpd service using pacemaker:
# pcs resource restart httpd-clone
Otherwise, run:
# systemctl restart httpd
To view your changes, reload your dashboard.
5.2. HTML Title
To set the HTML title that appears at the top of the browser window, add the following line to
local_settings.py.SITE_BRANDING = "Example, Inc. Cloud"
- Restart the httpd server.
5.3. Site Branding Link
The logo also acts as a hyperlink, redirecting to
horizon:user_homeby default. To change this, add the following attribute with the desired URL target tolocal_settings.py.SITE_BRANDING_LINK = "http://example.com"
- Restart the httpd server.
5.4. Help URL
By default the help URL points to https://access.redhat.com/documentation/en/red-hat-openstack-platform. You can change the help URL by editing the following attribute to the URL of your choice in
local_settings.py:'help_url': "http://openstack.example.com",
- Restart the httpd server.
