{% extends "data_explorer/table_entries_base.html" %} {% block table_headers %} {% table_header "id" "ID" min_width=60 %} {% table_header "is_mixture" min_width=100 %} {% table_header "mixture_id" "Mixture ID" min_width=125 %} {% table_header "substance_id" "Substance ID" min_width=125 %} {% table_header "purity" min_width=100 %} {% table_header "expires_at" min_width=125 %} {% table_header "supplier" min_width=150 %} {% table_header "supplier_catalog_number" min_width=125 %} Comments Edit {% endblock %} {% block table_rows %} {% foreign_key_link entry %} {% foreign_key_link entry.mixture %} {% foreign_key_link entry.substance %} {{ entry.purity|floatformat:3|default:"--" }}% {{ entry.expires_at|default:"--" }} {{ entry.supplier|default:"--" }} {{ entry.supplier_catalog_number|default:"--" }} {{ entry.comments|truncatechars:100 }} {% update_entry_link entry %} {% endblock %}