{% extends 'base.html' %} {% load static %} {% load crispy_forms_tags %} {% block title %}Add Ingredient | IQBlending{% endblock %} {% block content %}

BLENDING PLATFORM

Add Ingredient to Blend Form


{% if form %}
BLEND NUMBER : {{ d.blend_number }} / ({{ d.blend_number_2 }})
PRODUCT : {{ d.product }}
TANK NUMBER : {{ d.tank_number }}
DATE BLENDED : {{ d.date_blended }}
VOLUME : {{ d.volume_in_ltr }} Litres
BLENDING INSP. : {{ d.blending_inspector }}
{% if i %}
INGREDIENTS
    {% for n in i%}
  1. {{n.ingredient}} / {{n.quantity}}
  2. {% endfor %}
{% endif %}
{% csrf_token %} {{ form|crispy }} NOTE: Ingredients from multiple sources must bear different numbers
{% else %}

Form not found

{% endif %}

{% endblock %}