UTI: Move constatns to a separate file
[csit.git] / resources / tools / dash / app / pal / routes.py
index 16680c4..59af748 100644 (file)
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-"""Routes for parent Flask app."""
+"""Routes for parent Flask app.
+"""
+
 from flask import current_app as app
 from flask import render_template
 
+from .utils.constants import Constants as C
+
 
-@app.route("/")
+@app.route(C.APPLICATIN_ROOT)
 def home():
-    """Landing page."""
+    """Landing page.
+    """
     return render_template(
-        "index.jinja2",
-        title="FD.io CSIT",
-        description="Performance Dashboard",
-        template="home-template"
+        C.MAIN_HTML_LAYOUT_FILE,
+        title=C.TITLE,
+        description=C.DESCRIPTION,
+        template=C.TEMPLATE
     )