{% extends 'base.html' %} {% block title %}Add New Chemical{% endblock %} {% block content %}

Add New Chemical

Use this form to add a new generic chemical definition to the database. Once added, specific containers of this chemical can be assigned to users in the inventory.

{% csrf_token %}
{% for value, text in form.fields.hazards.choices %}
{% endfor %}
{% if source_request and source_request.sds %}
Note: SDS from the request ({{ source_request.sds.name }}) will be used automatically if you do not upload a new one.
{% endif %}
{% endblock %}