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

BLENDING PLATFORM

Search Dashboard


{% if data %}
SEARCH QUERY : {{search_query}}
{% 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 %}
{% else %}

No Search Result Found

{% endif %}

{% endblock %}