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

BLENDING PLATFORM

{% if start_date %}

Blend Report for {{start_date}} to {{end_date}}

{% else %}

Blend Report

{% endif %}
{% csrf_token %}

{% if data %} {% endif %}

{% if data %}
{% for r in data %} {% endfor %}
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 %}
{% if data.has_other_pages %} {% endif %}
{% endif %} {% endblock %}