diff options
Diffstat (limited to 'csit.infra.dash/app/pal/utils/constants.py')
-rw-r--r-- | csit.infra.dash/app/pal/utils/constants.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/csit.infra.dash/app/pal/utils/constants.py b/csit.infra.dash/app/pal/utils/constants.py index 8f39fc8991..73afb4c7a9 100644 --- a/csit.infra.dash/app/pal/utils/constants.py +++ b/csit.infra.dash/app/pal/utils/constants.py @@ -18,7 +18,6 @@ does not need to be hard coded here, but can be read from environment variables. """ import logging -import dash_bootstrap_components as dbc from dash import html @@ -36,13 +35,14 @@ class Constants: LOG_DATE_FORMAT = "%Y/%m/%d %H:%M:%S" # The application title. - TITLE = "FD.io CSIT" + TITLE = "FD.io CDash" + BRAND = "CDash" # The application description. DESCRIPTION = "Performance Dashboard" # External stylesheets. - EXTERNAL_STYLESHEETS = [ "/static/dist/css/bootstrap.css" ] + EXTERNAL_STYLESHEETS = ["/static/dist/css/bootstrap.css", ] # Top level template for all pages. TEMPLATE = "d-flex h-100 text-center text-white bg-dark" |