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():