{% extends "framework.html" %} {% block content %} {% block action_modals %} {% include "modals/objects/edit_reaction_modal.html" %} {% include "modals/objects/delete_reaction_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 %}
{% endblock content %}