aboutsummaryrefslogtreecommitdiff
path: root/app/views.py
diff options
context:
space:
mode:
authorNavan Chauhan <navanchauhan@gmail.com>2020-07-06 15:06:48 +0530
committerNavan Chauhan <navanchauhan@gmail.com>2020-07-06 15:06:48 +0530
commit85bef9a44d41762be5805668a1c9bdcc09c2867c (patch)
tree352af64e8190929b5a6955a93690aad9426c7f88 /app/views.py
parent6e0caf989d25de78409620cb5f54391785be86bc (diff)
added visualisation module
Diffstat (limited to 'app/views.py')
-rw-r--r--app/views.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/views.py b/app/views.py
index 0d6f7fc..42c119e 100644
--- a/app/views.py
+++ b/app/views.py
@@ -27,6 +27,11 @@ def about():
"""Render about page."""
return render_template('about.html')
+@app.route('/Visualise')
+def visualise():
+ """Render visualisation page."""
+ return render_template('visualise.html')
+
@app.route('/basic-form', methods=['GET', 'POST'])
def basic_form():