blob: 446d46a0f5717b16a6386728e892c8cdc53f7162 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
{% extends 'base.html' %}
{% set active_page = "job_status" %}
{% block main %}
<h2>Job ID: {{ ID }}</h2>
<b>Submitted On: </b>{{subDate}}<br>
<b>Target Name: </b>{{pn}}<br>
<b>Ligand Name: </b>{{ln}}<br>
<b>Description: </b>{{desc}}<br>
<b>Status: </b>{{status}}
{% if status == 'Completed' %}
<style>
iframe {
width: 100%;
height: 550px;
border: none;
overflow: hidden;
}
model-viewer {
width: 100%;
height: 400px;
}
</style>
<p>A detailed zip file containing this PDF, along with all supporting files (configuration, pictures, protein-ligands e.t.c) has been sent to your email.</p>
<h3>AR Model</h3>
<section>
<script type="module" src="https://unpkg.com/@google/model-viewer/dist/model-viewer.js"></script>
<script nomodule src="https://unpkg.com/@google/model-viewer/dist/model-viewer-legacy.js"></script>
<model-viewer src={{AndroidModel}} ios-src={{iOSModel}} ar="" auto-rotate="" camera-controls="" shadow-intensity="1" alt=”3D Model of your Docking Job”></model-viewer>
</section>
<h3>PDF Report</h3>
<section>
<iframe src={{PDFReport}} id="report"></iframe>
</section>
{% endif %}
<section>
<style>
#growth{
height: 40vh;
}
</style>
<div id="growth"></div>
<script src="{{url_for('static',filename='js/growth.js')}}"></script>
</section>
{% endblock %}
|