2020-07-07 17:50:03 +01:00
|
|
|
{% 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}}
|
2020-08-04 16:58:56 +01:00
|
|
|
|
|
|
|
<section>
|
|
|
|
<style>
|
|
|
|
#growth{
|
|
|
|
height: 40vh;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<div id="growth"></div>
|
|
|
|
<script src="{{url_for('static',filename='js/growth.js')}}"></script>
|
|
|
|
</section>
|
2020-07-07 17:50:03 +01:00
|
|
|
{% endblock %}
|