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

BLENDING PLATFORM

Ingredient Information


{% if d %}
BLEND NUMBER : {{ d.blend.blend_number }} / ({{ d.blend.blend_number_2 }})
PRODUCT : {{ d.blend.product }}
TANK NUMBER : {{ d.blend.tank_number }}
DATE BLENDED : {{ d.blend.date_blended }}
VOLUME : {{ d.blend.volume_in_ltr }} Litres
BLENDING INSP. : {{ d.blend.blending_inspector }}

INGREDIENT : {{d.ingredient}}

QUANTITY : {{d.quantity}}

SUPPLIER : {{d.supplier}}

CODE : {{d.ingredient_code}}

DATE OF SUPPLY : {{d.date_of_supply}}

Recorded by {{d.username}} at {{d.datetime}}
{% else %}

Information not found

{% endif %}

{% endblock %}