aboutsummaryrefslogtreecommitdiff
path: root/app/templates/home.html
blob: efe1a3616aea353163132948f7d3a2b880d7093e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% extends 'base.html' %}

{% block main %}
    <h2>Curie Web Demo</h2>
    <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>
    <ul>
        <li><a href="{{ url_for('dock_upload') }}">Dock and Report</a></li>
        <li><a href="{{ url_for('status')}}">Job Status</a></li>
    </ul>

    <img src="{{url_for('static',filename='assets/workingInALaboratory.svg')}}" />
{% endblock %}