{% extends "modal_form.html" %} {% block form %} Receive outstanding parts for {{ order }} - {{ order.description }}
{% csrf_token %} {% load crispy_forms_tags %}
{% if not destination %} Select location to receive parts {% else %}

Location of received parts

{% endif %}

Select parts to receive against this order.

{% for line in lines %} {% if line.part %} {% else %} {% endif %} {% endfor %}
Part Order Code On Order Received Receive
{% include "hover_image.html" with image=line.part.part.image hover=False %} {{ line.part.part.full_name }} {{ line.part.SKU }}Referenced part has been removed{{ line.quantity }} {{ line.received }}
{% endblock %}