39 lines
954 B
HTML
39 lines
954 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% 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;
|
|
}
|
|
</style>
|
|
|
|
<p>A detailed zip file containing this PDF, along with all supporting files (configuration, pictures, protein-ligands e.t.c) to your email.</p>
|
|
<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 %} |