{% extends "framework.html" %} {% load envipytags %} {% block content %} {% block action_modals %} {% include "modals/objects/edit_reaction_modal.html" %} {% include "modals/objects/generic_set_aliases_modal.html" %} {% include "modals/objects/generic_set_scenario_modal.html" %} {% include "modals/objects/generic_copy_object_modal.html" %} {% include "modals/objects/generic_set_external_reference_modal.html" %} {% include "modals/objects/generic_delete_modal.html" %} {% endblock action_modals %}
{{ reaction.name|nh_safe }}
{{ reaction.description|nh_safe }}
{% if reaction.aliases %}
{% for alias in reaction.aliases %} {{ alias }} {% endfor %}
{% endif %}
{{ reaction.as_svg|safe }}
{% for educt in reaction.educts.all %} {{ educt.name|nh_safe }} {% endfor %} {% for product in reaction.products.all %} {{ product.name|nh_safe }} {% endfor %}
{{ reaction.smirks }}
{% if reaction.rules.all %}
{% for r in reaction.rules.all %} {{ r.name|nh_safe }} {% endfor %}
{% endif %} {% if reaction.related_pathways %}
{% for r in reaction.related_pathways %} {{ r.name|nh_safe }} {% endfor %}
{% endif %} {% if reaction.scenarios.all %}
{% for s in reaction.scenarios.all %} {{ s.name|nh_safe }} ({{ s.package.name|nh_safe }}) {% 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 %}