{% extends "framework.html" %} {% block content %} {% block action_modals %} {% include "modals/objects/edit_compound_modal.html" %} {% include "modals/objects/generic_set_aliases_modal.html" %} {% include "modals/objects/add_structure_modal.html" %} {% include "modals/objects/generic_set_scenario_modal.html" %} {% include "modals/objects/generic_set_external_reference_modal.html" %} {% include "modals/objects/generic_copy_object_modal.html" %} {% include "modals/objects/generic_delete_modal.html" %} {% endblock action_modals %}
{{ compound.name|safe }}

The structures stored in this compound can be found at Compound structures >>

{% if compound.aliases %}
{% for alias in compound.aliases %} {{ alias }} {% endfor %}
{% endif %}
{{ compound.description|safe }}
{{ compound.default_structure.as_svg|safe }}
{{ compound.default_structure.smiles }}
{{ compound.default_structure.canonical_smiles }}
{{ compound.default_structure.inchikey }}
{% if compound.related_reactions %}
{% for r in compound.related_reactions %} {{ r.name|safe }} ({{ r.package.name|safe }}) {% endfor %}
{% endif %} {% if compound.related_pathways %}
{% for r in compound.related_pathways %} {{ r.name|safe }} ({{ r.package.name|safe }}) {% endfor %}
{% endif %} {% if compound.scenarios.all %}
{% for s in compound.scenarios.all %} {{ s.name|safe }} ({{ s.package.name|safe }}) {% endfor %}
{% endif %} {% if compound.get_external_identifiers %}
{% if compound.get_pubchem_compound_identifiers %}
{% for eid in compound.get_pubchem_compound_identifiers %} CID{{ eid.identifier_value }} {% endfor %}
{% endif %} {% if compound.get_pubchem_substance_identifiers %}
{% for eid in compound.get_pubchem_substance_identifiers %} SID{{ eid.identifier_value }} {% endfor %}
{% endif %} {% if compound.get_chebi_identifiers %}
{% for eid in compound.get_chebi_identifiers %} CHEBI:{{ eid.identifier_value }} {% endfor %}
{% endif %}
{% endif %}
{% endblock content %}