{% extends "data_explorer/table_entries_base.html" %} {% block table_headers %} {% table_header "id" "ID" min_width=60 %} Flags {% table_header "substance_type" min_width=125 %} {% table_header "common_name" min_width=100 %} {% table_header "iupac_name" min_width=100 %} {% table_header "bcpc" "BCPC" min_width=100 %} {% table_header "cas_number" "CAS #" min_width=100 %} {% table_header "chembl" "Chembl" min_width=100 %} {% table_header "chemspace" "ChemSpace" min_width=100 %} {% table_header "emolecules" "eMolecules" min_width=100 %} {% table_header "enamine" "Enamine" min_width=100 %} {% table_header "pdb" "PDB" min_width=100 %} {% table_header "ppdb" "PPDB" min_width=100 %} {% table_header "pubchem_cid" "PubChem (CID)" min_width=100 %} {% table_header "aflow" "AFLOW" min_width=100 %} {% table_header "cod" "COD" min_width=100 %} {% table_header "jarvis" "JARVIS" min_width=100 %} {% table_header "materials_project" "Materials Project" min_width=100 %} {% table_header "oqmd" "OQMD" min_width=100 %} Synonyms {% table_header "description" min_width=200 %} Edit {% endblock %} {% block table_rows %} {% foreign_key_link entry "id" %} {% if entry.is_theoretical %}Theo{% endif %} {% if entry.is_private %}Priv{% endif %} {% if entry.is_unknown %}Unk{% endif %} {% if entry.is_delisted %}Delisted{% endif %} {% if not entry.is_theoretical and not entry.is_private and not entry.is_unknown and not entry.is_delisted %} Standard {% endif %} {{ entry.substance_type }} {{ entry.registered_by.username|default:"Simmate Team" }} {{ entry.common_name|default:"--" }} {{ entry.iupac_name|default:"--" }} {{ entry.bcpc|default:"--" }} {{ entry.cas_number|default:"--" }} {{ entry.chembl|default:"--" }} {{ entry.chemspace|default:"--" }} {{ entry.emolecules|default:"--" }} {{ entry.enamine|default:"--" }} {{ entry.pdb|default:"--" }} {{ entry.ppdb|default:"--" }} {{ entry.pubchem_cid|default:"--" }} {{ entry.aflow|default:"--" }} {{ entry.cod|default:"--" }} {{ entry.jarvis|default:"--" }} {{ entry.materials_project|default:"--" }} {{ entry.oqmd|default:"--" }} {{ entry.synonyms|default:"--" }} {{ entry.description|truncatechars:50|default:"--" }} {% update_entry_link entry %} {% endblock %}