Curie-Web/app/templates/home.html

12 lines
566 B
HTML
Raw Normal View History

2020-06-24 19:09:05 +01:00
{% extends 'base.html' %}
{% block main %}
<h2>Curie Web Demo</h2>
2020-07-07 17:50:03 +01:00
<p>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.</p>
2020-06-24 19:09:05 +01:00
<ul>
<li><a href="{{ url_for('dock_upload') }}">Dock and Report</a></li>
2020-07-07 17:50:03 +01:00
<li><a href="{{ url_for('status')}}">Job Status</a></li>
2020-06-24 19:09:05 +01:00
</ul>
2020-08-04 16:58:56 +01:00
<img src="{{url_for('static',filename='assets/workingInALaboratory.svg')}}" />
2020-06-24 19:09:05 +01:00
{% endblock %}