{% extends 'base.html' %} {% load static %} {% load crispy_forms_tags %} {% block title %}Report | IQBlending{% endblock %} {% block content %}
Blend Report for {{product}}, from {{start_date}} to {{end_date}}
{% else %}Blend Report
{% endif %}| BLEND | PRODUCT | DATE | TANK | VOLUME | BLENDER | STATUS |
|---|---|---|---|---|---|---|
| {{r.blend_number}} ({{r.blend_number_2}}) | {{r.product}} | {{r.date_blended}} | {{r.tank_number}} | {{r.volume_in_ltr}} | {{r.blending_inspector}} | {% if r.status == 'BLENDED' %} {% elif r.status == 'CHECKED' %} {% elif r.status == 'APPROVED' %} {% if r.result == 'PASS' %} {% elif r.result == 'FAIL' %} {% else %} {% endif %} {% endif %} {{r.status}} {% if r.has_dispute == True %} {% if r.dispute_status == 'open' %} {% elif r.dispute_status == 'closed' %} {% endif %} {% endif %} |