From 29798c7351ec3e3c6a13f40b4f80e804ec803006 Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Sat, 29 Aug 2020 19:25:45 +0530 Subject: added single dock functionality, added more information --- app/templates/base.html | 9 ++++---- app/templates/dock_upload_single.html | 43 +++++++++++++++++++++++++++++++++++ app/templates/generate.html | 2 +- app/templates/home.html | 25 ++++++++++++++++---- 4 files changed, 70 insertions(+), 9 deletions(-) create mode 100644 app/templates/dock_upload_single.html (limited to 'app/templates') diff --git a/app/templates/base.html b/app/templates/base.html index d116ee3..dcae79c 100644 --- a/app/templates/base.html +++ b/app/templates/base.html @@ -68,15 +68,16 @@

Features

Beta Features

diff --git a/app/templates/dock_upload_single.html b/app/templates/dock_upload_single.html new file mode 100644 index 0000000..882675c --- /dev/null +++ b/app/templates/dock_upload_single.html @@ -0,0 +1,43 @@ +{% extends 'base.html' %} + +{% block main %} +

Enter Your Configuration

+
+ {% include 'flash_messages.html' %} + {{ form.csrf_token }} +
+ {{ form.description.label }} + {{ form.description(class="form-control") }} +
+
+
+ {{ form.pdbID.label }} + {{ form.pdbID(class="form-control")}} +
+
+ {{ form.smiles.label }} + {{ form.smiles(class="form-control")}} +
+
+ {{ form.name.label }} + {{ form.name(class="form-control")}} +
+
+
+ {{ form.email.label }} + {{ form.email(class="form-control") }} +
+ + +
+
+
+ +
+ +
+{% endblock %} \ No newline at end of file diff --git a/app/templates/generate.html b/app/templates/generate.html index 45bbb3b..629a2a3 100644 --- a/app/templates/generate.html +++ b/app/templates/generate.html @@ -34,7 +34,7 @@ {% endfor %} diff --git a/app/templates/home.html b/app/templates/home.html index 541c313..43a84cc 100644 --- a/app/templates/home.html +++ b/app/templates/home.html @@ -2,12 +2,29 @@ {% block main %}

Curie Web Demo

-

Dock and Report performs molecular docking using AutoDock Vina, generates visualisations using PyMOL and then finds protein-ligand interactions using PLIP. It then compiles all of this into a PDF report and emails it to you.

+

Curie-Web is a part of The Curie Project which aims to make the process of Computer-Aided Drug Design as fast as possible.

+

The following are the currently active modules

+

Docking

+

Drug Designing

+ + +

Researching

+ + +

Misc.

+ {% endblock %} \ No newline at end of file -- cgit v1.2.3