feat(topology): Enable 2 QATs
[csit.git] / csit.infra.dash / app / cdash / routes.py
1 # Copyright (c) 2024 Cisco and/or its affiliates.
2 # Licensed under the Apache License, Version 2.0 (the "License");
3 # you may not use this file except in compliance with the License.
4 # You may obtain a copy of the License at:
5 #
6 #     http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
13
14 """Routes for parent Flask app.
15 """
16
17 from flask import current_app as app
18 from flask import render_template
19
20 from .utils.constants import Constants as C
21
22
23 @app.route(C.APPLICATIN_ROOT)
24 def home():
25     """Landing page.
26     """
27
28     menu_itms = list()
29     if C.START_TRENDING:
30         menu_itms.append({"path": "/trending/", "title": C.TREND_TITLE})
31     if C.START_REPORT:
32         menu_itms.append({"path": "/report/", "title": C.REPORT_TITLE})
33     if C.START_COMPARISONS:
34         menu_itms.append({"path": "/comparisons/", "title": C.COMP_TITLE})
35     if C.START_COVERAGE:
36         menu_itms.append({"path": "/coverage/", "title": C.COVERAGE_TITLE})
37     if C.START_STATISTICS:
38         menu_itms.append({"path": "/stats/", "title": C.STATS_TITLE})
39     if C.START_FAILURES:
40         menu_itms.append({"path": "/news/", "title": C.NEWS_TITLE})
41     if C.START_SEARCH:
42         menu_itms.append({"path": "/search/", "title": C.SEARCH_TITLE})
43     if C.START_DOC:
44         menu_itms.append({"path": "/cdocs/", "title": C.DOC_TITLE})
45
46     return render_template(
47         C.MAIN_HTML_LAYOUT_FILE,
48         title=C.TITLE,
49         brand=C.BRAND,
50         description=C.DESCRIPTION,
51         menu_itms=menu_itms
52     )