diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2020-10-17 18:22:35 +0530 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2020-10-17 18:22:35 +0530 |
commit | 426d6e460b36690e8fbbc0d09ad34e7bacade61a (patch) | |
tree | 4c9d293e68bd106c4c53eb06e76c634d585beb8c /app/templates/mol-characteristics.html | |
parent | 16316fa24cbc9b66a1dbcf9fd8e18506c35d7b91 (diff) |
added Molecule Properties and Alerts
Diffstat (limited to 'app/templates/mol-characteristics.html')
-rw-r--r-- | app/templates/mol-characteristics.html | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/app/templates/mol-characteristics.html b/app/templates/mol-characteristics.html new file mode 100644 index 0000000..c7fc945 --- /dev/null +++ b/app/templates/mol-characteristics.html @@ -0,0 +1,66 @@ +{% extends 'base.html' %} +{% set active_page = "analyse" %} +{% block main %} + <h1>Chemical Properties and Alerts</h1> + <form action="{{ url_for('propalert') }}" method="post" enctype="multipart/form-data"> + {% include 'flash_messages.html' %} + {{ form.csrf_token }} + <div class="form-row"> + {{ form.query.label }} + {{ form.query(class="form-control")}} + </div> + <!--<div class="form-row"> + {\{ form.modelSelection.label }} + {\{ form.modelSelection(class="form-control")}} + </div>--> + <br> + <div class="form-row"> + <button type="submit" class="btn btn-primary">Search</button> + </div> + </form> + + {% if complete %} + <br> + <h3>Properties</h3> + + <table class="table table-dark"> + <thead> + <tr> + <th scope="col">Property</th> + <th scope="col">Value</th> + </tr> + </thead> + {% for x in prop %} + <tbody> + <tr> + <th scope="row">{{x}}</th> + <td>{{prop[x]}}</td> + </tr> + </tbody> + {% endfor %} + </table> + + {% if perfect %} + <h3>No alerts for the given compound.</h3> + {% endif %} + + <div class="card-deck row-cols-2"> + {% for x in range(result|length) %} + + <div class="card" style="width: 18rem;"> + <div class="card-img-top"> + {{result[x]["SVG"] | safe }} + </div> + <div class="card-body"> + <h5 class="card-title">{{result[x]["Name"]}}</h5> + <p class="card-text">{{result[x]["Description"]}}</p> + <a href="#" class="btn btn-primary">Read Paper</a> + </div> + </div> + {% endfor %} + </div> + {% endif %} + + + +{% endblock %}
\ No newline at end of file |