Chemical Compliance Review

Entity: {{ eid }}

{% if state == 'already_compliant' %}

Already Compliant

This chemical drawing has already been reviewed and marked as compliant.

Review Again

You can close this window and return to Signals Notebook.

{% elif state == 'result' %}
{% if all_compliant %}

Review Complete

All components have been marked as compliant.

The External Checking warning has been dismissed.

{% elif has_warnings %}
⚠️

Review Complete with Warnings

Some components have compliance warnings.

The External Checking warning has been dismissed.

{% else %}

Review Complete - Issues Found

One or more components are non-compliant.

The External Checking warning remains active.

{% endif %}
Summary:

You can close this window and return to Signals Notebook.

{% else %}
Reactants
{% if reactants %} {% for reactant in reactants %}
{{ reactant.name or 'Unnamed Reactant' }}
{% if reactant.formula %}
Formula: {{ reactant.formula | safe }}
{% endif %} {% if reactant.mw %}
MW: {{ reactant.mw }}
{% endif %} {% if reactant.rxnid %}
Rxn ID: {{ reactant.rxnid }}
{% endif %} {% if reactant.eq %}
Eq: {{ reactant.eq }}
{% endif %}
{% for key, opt in options.items() %} {% endfor %}
{% endfor %} {% else %}
No reactants found
{% endif %}
Products
{% if products %} {% for product in products %}
{{ product.name or 'Unnamed Product' }}
{% if product.formula %}
Formula: {{ product.formula | safe }}
{% endif %} {% if product.mw %}
MW: {{ product.mw }}
{% endif %} {% if product.rxnid %}
Rxn ID: {{ product.rxnid }}
{% endif %} {% if product.productId %}
Product ID: {{ product.productId }}
{% endif %} {% if product.purity %}
Purity: {{ product.purity }}
{% endif %}
{% for key, opt in options.items() %} {% endfor %}
{% endfor %} {% else %}
No products found
{% endif %}
{% endif %}