{% for reaction in data.reactions %}
Reaction {{ loop.index }}
-
-
|
{% if reaction.description %}
| Description |
{{ reaction.description }} |
{% endif %}
| Tailoring |
{% for tail in reaction.tailoring %}
- {{ tail }}
{% endfor %}
|
| Database References |
{% if reaction.get("databaseIds") %}
{% else %}
No database crosslinks available
{% endif %}
|
| Evidence |
{% for code in reaction.evidenceCode %}
- {{ code }}
{% endfor %}
|
| References |
{% if reaction.references is not none %}
{% for ref in reaction.references %}
- {{ ref }}
{% endfor %}
{% else %}
No references available
{% endif %}
|
{% for exp_react in reaction.reactions %}
Example {{ loop.index }}
| Metadata |
{% if exp_react.description %}
- Description: {{ exp_react.description }}
{% else %}
- Description: No description available
{% endif %}
- Intermediate: {{ exp_react.isIntermediate }}
|
{% for substrate in exp_react.substrate %}
| Substrate {{ loop.index }} |
|
{% endfor %}
{% for product in exp_react.products %}
| Product {{ loop.index }} |
|
{% endfor %}
{% if exp_react.forbidden_products %}
{% for forb_prod in exp_react.forbidden_products %}
| Forbidden Product {{ loop.index }} |
|
{% endfor %}
{% endif %}
{% endfor %}
{% endfor %}