{% extends 'base.html' %} {% load static %} {% load crispy_forms_tags %} {% block title %} User-Admin | IQChem {% endblock %} {% block content %}

ADMINISTRATOR DASHBOARD

Chemical Section Platform


{% for l in object_list %} {% if l.material %}

{{l.id}}     Reference : {{l.reference}},    Material : {% if l.material %}{{l.material}}{% else %}{{l.material_info.material}}{% endif %},    Supplier : {{l.supplier}},   Date : {% if l.date_sampled %}{{l.date_sampled}}{% else %}{{l.material_info.date_sampled}}{% endif %}

{% else %}

{{l.id}}     Reference : {{l.reference}},    Material : {% if l.material %}{{l.material}}{% else %}{{l.material_info.material}}{% endif %},    Supplier : {{l.supplier}},   Date : {% if l.date_sampled %}{{l.date_sampled}}{% else %}{{l.material_info.date_sampled}}{% endif %}

{% endif %} {% endfor %}

MAIN LIST
{% endblock %}