blob: 896d49a4af5518b4c0de4cd9116a158f4ca0d817 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{% 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}}
<section>
<style>
#growth{
height: 40vh;
}
</style>
<div id="growth"></div>
<script src="{{url_for('static',filename='js/growth.js')}}"></script>
</section>
{% endblock %}
|