From 8ec4944df451e39a289b8f679edc8a9096299c0f Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Thu, 17 Sep 2020 00:01:58 +0530 Subject: refactored names for docking --- app/templates/dock_manual.html | 67 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 app/templates/dock_manual.html (limited to 'app/templates/dock_manual.html') diff --git a/app/templates/dock_manual.html b/app/templates/dock_manual.html new file mode 100644 index 0000000..b549628 --- /dev/null +++ b/app/templates/dock_manual.html @@ -0,0 +1,67 @@ +{% extends 'base.html' %} +{% set active_page = "dock" %} +{% block main %} +

Enter Your Configuration

+
+ {% include 'flash_messages.html' %} + {{ form.csrf_token }} +
+ {{ form.description.label }} + {{ form.description(class="form-control") }} +
+
+
+ {{ form.size_x.label }} + {{ form.size_x(class="form-control")}} +
+
+ {{ form.size_y.label }} + {{ form.size_y(class="form-control")}} +
+
+ {{ form.size_z.label }} + {{ form.size_z(class="form-control")}} +
+
+
+
+ {{ form.center_x.label }} + {{ form.center_x(class="form-control")}} +
+
+ {{ form.center_y.label }} + {{ form.center_y(class="form-control")}} +
+
+ {{ form.center_z.label }} + {{ form.center_z(class="form-control")}} +
+
+
+
+ {{ form.target.label }} + {{ form.target(class="form-control") }} +
+
+ {{ form.ligand.label }} + {{ form.ligand(class="form-control")}} +
+
+
+ {{ form.email.label }} + {{ form.email(class="form-control") }} +
+ + +
+
+
+ +
+ +
+{% endblock %} \ No newline at end of file -- cgit v1.2.3