{% extends 'base.html' %} {% load static %} {% block title %} User-Admin Dashboard | IQChem {% endblock %} {% block content %}
Chemical Section Platform
| REFERENCE | MATERIAL | SAMPLED BY | SAMPLED | QUANTITY | SUPPLIER | RESULT | STATUS |
|---|---|---|---|---|---|---|---|
| {{r.reference}} | {{r.material}} | {{r.sampled_by}} | {{r.date_sampled}} | {{r.quantity}} | {{r.supplier}} | {{r.result}} | {% if r.status == 'sampled' %} {% elif r.status == 'analysed' %} {% elif r.status == 'checked' %} {% 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 %} |