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

BLENDING PLATFORM

Add New Product to Blend Form


{% if p %}
{% for r in p %} {% endfor %}
INGREDIENT DESCRIPTION CREATED BY DATE CREATED
{{r.ingredient_name}} {{r.ingredient_description}} {{r.created_by}} {{r.datetime_created}}

{% else %}

No ingredient in the System

{% endif %} {% if form %}
NEW PRODUCT FORM
{% csrf_token %} {{ form|crispy }} NOTE: Only create new ingredient not in the system
{% else %}

Form not found

{% endif %}

{% endblock %}