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

BLENDING PLATFORM

Main Dashboard


{% if data %}
{% for r in data %} {% endfor %}
BLEND 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 %}
{% else %}

dashboard

{% endif %}

{% endblock %}