diff options
author | Tibor Frank <tifrank@cisco.com> | 2022-10-05 06:50:07 +0200 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2022-10-05 06:50:07 +0200 |
commit | 4d095b586bc4e249ab4e30e1a3f17b310f52a229 (patch) | |
tree | fda7db1c274a3fbe937263000e25aff5a0c1a72e /csit.infra.dash/app/pal/utils | |
parent | 745e0d046ebae1e72fb9bf73e32ae9ede11e3239 (diff) |
C-Dash: Improved improvements in layout
Signed-off-by: Tibor Frank <tifrank@cisco.com>
Change-Id: I50c16f3b5c8e71be6b38d97e9968d8538a1b5264
Diffstat (limited to 'csit.infra.dash/app/pal/utils')
-rw-r--r-- | csit.infra.dash/app/pal/utils/constants.py | 27 |
1 files changed, 23 insertions, 4 deletions
diff --git a/csit.infra.dash/app/pal/utils/constants.py b/csit.infra.dash/app/pal/utils/constants.py index 73afb4c7a9..8807fec6ca 100644 --- a/csit.infra.dash/app/pal/utils/constants.py +++ b/csit.infra.dash/app/pal/utils/constants.py @@ -35,11 +35,18 @@ class Constants: LOG_DATE_FORMAT = "%Y/%m/%d %H:%M:%S" # The application title. - TITLE = "FD.io CDash" - BRAND = "CDash" + TITLE = "FD.io CSIT" + BRAND = "CSIT-Dash" # The application description. - DESCRIPTION = "Performance Dashboard" + DESCRIPTION = 'Performance Dashboard "CSIT-Dash"' + + # Copyright statement. + COPYRIGHT = ( + 'Copyright © 2016-2022 ' + '<a href="https://fd.io" class="text-white">The Fast Data Project</a>, ' + 'a series of LF Projects, LLC.' + ) # External stylesheets. EXTERNAL_STYLESHEETS = ["/static/dist/css/bootstrap.css", ] @@ -73,7 +80,7 @@ class Constants: # List of releases used for iterative data processing. # The releases MUST be in the order from the current (newest) to the last # (oldest). - RELEASES = ["csit2206", "csit2202", ] + RELEASES = ["csit2210", "csit2206", "csit2202", ] ############################################################################ # General, application wide, layout affecting constants. @@ -248,6 +255,9 @@ class Constants: ############################################################################ # News. + # The title. + NEWS_TITLE = "CI TEST FAILURE AND ANOMALY STATISTICS" + # The pathname prefix for the application. NEWS_ROUTES_PATHNAME_PREFIX = "/news/" @@ -266,6 +276,9 @@ class Constants: ############################################################################ # Report. + # The title. + REPORT_TITLE = "PER RELEASE PERFORMANCE RESULTS" + # The pathname prefix for the application. REPORT_ROUTES_PATHNAME_PREFIX = "/report/" @@ -282,6 +295,9 @@ class Constants: ############################################################################ # Statistics. + # The title. + STATS_TITLE = "CI JOB EXECUTION STATISTICS" + # The pathname prefix for the application. STATS_ROUTES_PATHNAME_PREFIX = "/stats/" @@ -301,6 +317,9 @@ class Constants: ############################################################################ # Trending. + # The title. + TREND_TITLE = "PERFORMANCE TRENDING (DAILY, WEEKLY)" + # The pathname prefix for the application. TREND_ROUTES_PATHNAME_PREFIX = "/trending/" |