From 85bef9a44d41762be5805668a1c9bdcc09c2867c Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Mon, 6 Jul 2020 15:06:48 +0530 Subject: added visualisation module --- app/templates/visualise.html | 1322 ++++++++++++++++++++++++++++++++++++++++++ app/views.py | 5 + 2 files changed, 1327 insertions(+) create mode 100644 app/templates/visualise.html (limited to 'app') diff --git a/app/templates/visualise.html b/app/templates/visualise.html new file mode 100644 index 0000000..67c3a1c --- /dev/null +++ b/app/templates/visualise.html @@ -0,0 +1,1322 @@ +{% extends 'base.html' %} + +{% block main %} +

Curie Visualise

+

placeholder uwu

+ +
+ + + + + +
+ + +
+

+ +
+ + + + + +
+ + +

+ + + + + + + +
+ + +
+
+ Protein +
+
+ + +
+
+ +
+
+ Ligand +
+
+ + +
+
+ + +{% endblock %} \ No newline at end of file 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(): -- cgit v1.2.3