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

BLENDING PLATFORM

Dispute Creation Form


{% if d %}
BLEND NUMBER : {{ d.blend_number }} / ({{ d.blend_number_2 }})   {% if d.result == 'PASS' %}{{d.result}}{% elif d.result == 'FAIL' %}{{d.result}}{% endif %}
PRODUCT : {{ d.product }}
TANK NUMBER : {{ d.tank_number }}
DATE BLENDED : {{ d.date_blended }}
VOLUME : {{ d.volume_in_ltr }} Litres
STATUS : {{ d.status }}
RESULT : {{ d.result }}

{% if disputes %}
    {% for dd in disputes %}
  1. {{dd.dispute}}
  2. {% endfor %}
{% else %}
No Previous Dispute Found
{% endif %}
{% csrf_token %} {{ form|crispy }}
{% endif %} {% endblock %}