{% extends "framework.html" %} {% block content %} {% block action_modals %} {% include "modals/objects/edit_reaction_modal.html" %} {% include "modals/objects/generic_set_scenario_modal.html" %} {% include "modals/objects/generic_delete_modal.html" %} {% endblock action_modals %}
{{ reaction.name }}
{{ reaction.description }}
{{ reaction.as_svg|safe }}
{% for educt in reaction.educts.all %} {{ educt.name }} {% endfor %} {% for product in reaction.products.all %} {{ product.name }} {% endfor %}
{{ reaction.smirks }}
{% if reaction.rules.all %}
{% for r in reaction.rules.all %} {{ r.name }} {% endfor %}
{% endif %} {% if reaction.related_pathways %}
{% for r in reaction.related_pathways %} {{ r.name }} {% endfor %}
{% endif %} {% if reaction.scenarios.all %}
{% for s in reaction.scenarios.all %} {{ s.name }} ({{ s.package.name }}) {% endfor %}
{% endif %} {% if reaction.get_external_identifiers %}
{% if reaction.get_rhea_identifiers %}
{% for eid in reaction.get_rhea_identifiers %} {{ eid.identifier_value }} {% endfor %}
{% endif %} {% if reaction.get_uniprot_identifiers %}
{% for eid in reaction.get_uniprot_identifiers %} 10 SwissProt entries ({{ eid.identifier_value }}) {% endfor %}
{% endif %}
{% endif %}
{% endblock content %}