{% extends "base.html" %} {% block style %} {% endblock %} {% block content %}
{% if result %}
Prescription -- {{ result.pinyin_name }}
Chinese Name
{{ result.chinese_name }}
Composition
{{ result.composition }}
Use Method
{{ result.use_method }}
Indication
{{ result.indication }}
Reference
{{ result.ref }}
Related Herbs
{% if result.herbs %} {% for herb in result.herbs %} {{ herb.pinyin_name }} ({{herb.latin_name}}) {% endfor %} {% else %}
Sorry, there's no related herbs information
{% endif %} {% endif%} {% if result.pi_lists %}
Prescription Ingredients
{% for pi_list in result.pi_lists %} {% endfor %}
Formula Ingredient Source
{{ pi_list.formula_ingredient }} {{ pi_list.source }}
{% else %}
Sorry, there's no prescription ingredients information
{% endif %}
{% endblock %}