{% extends "htmx/form_base.html" %} {% block form %} {% include "data_explorer/general_search_options.html" %} {% if component.form_mode == "create" %} {% alert theme="warning" message="This form is only useful when you are moving an existing batch to a new container. If you have a new batch of something, it is easier to create your container(s) within the Batch creation form." %} {% endif %}

1. Container Info

{% htmx_number_input name="batch_id" label="Batch ID" placeholder="1234" %}
{% htmx_selectbox name="location_id" label="Storage Location" options=component.location_options %}
{% htmx_text_input name="barcode" placeholder="(optional) use scanner" %}
{% htmx_number_input name="initial_amount" label="Amount" placeholder="the initial amount of material" %}
{% htmx_selectbox name="amount_units" options=component.table.amount_units_options %}
{% include "core/forms/comments.html" %}
{% include "data_explorer/dynamic_submit_button.html" %} {% endblock %}