{% extends "framework.html" %} {% block content %} {% block action_modals %} {% include "modals/objects/edit_compound_structure_modal.html" %} {% include "modals/objects/generic_set_aliases_modal.html" %} {% include "modals/objects/generic_set_scenario_modal.html" %} {% include "modals/objects/generic_set_external_reference_modal.html" %} {% include "modals/objects/generic_delete_modal.html" %} {% endblock action_modals %}
{{ compound_structure.name|safe }}

{{ compound_structure.description|safe }}

{{ compound_structure.as_svg|safe }}
{{ compound_structure.smiles }}
{% if compound_structure.aliases %}
{% for alias in compound_structure.aliases %} {{ alias }} {% endfor %}
{% endif %} {% if compound_structure.scenarios.all %}
{% for s in compound_structure.scenarios.all %} {{ s.name|safe }} ({{ s.package.name|safe }}) {% endfor %}
{% endif %}
{% endblock content %}