{% extends "base.html" %} {% block style %} {% endblock %} {% block content %}
{% if result %}
Target -- {{ result.protein_name }}
Gene Name
{{ result.gene_name|safe }}
Protein Name
       Recommended Name:
{{ result.protein_name }}
       Alternative Name(s):
    {% for result in result.alter_name %}
  • {{result}}
  • {% endfor %}
Uniprot ID
Function
{{ result.function }}
Related Drugs
{% if result.drugs %} {% for drug in result.drugs %} {{ drug.name }} {% endfor %} {% else %}
Sorry, there's no related drugs information
{% endif %}
Related Diseases
{% if result.diseases %} {% for disease in result.diseases %} {{ disease.name }} {% endfor %} {% else %}
Sorry, there's no related diseases information
{% endif %}
Related Herbal ingredients
{% if result.ingredients %} {% for ingredient in result.ingredients %} {{ ingredient.name }} {% endfor %} {% else %}
Sorry, there's no related ingredients information
{% endif %}
Related Proteins
{% if result.ppis %} {% for ppi in result.ppis %} {{ ppi }} {% endfor %} {% else %}
Sorry, there's no related proteins information
{% endif %}
{% endif %}
{% endblock %}