{% extends 'inventory/base.html' %} {% block title %}Supplier List{% endblock %} {% block content %}
{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}

SUPPLIER LIST

{% for supplier in page_obj %} {% endfor %}
SUPPLIER NAME CONTACT NAME EMAIL PHONE ADDRESS CITY STATE POSTAL CODE COUNTRY KRA PIN ACTION
{{ supplier.supplier_name }} {{ supplier.contact_name }} {{ supplier.email }} {{ supplier.phone }} {{ supplier.address }} {{ supplier.city }} {{ supplier.state }} {{ supplier.postal_code }} {{ supplier.country }} {{ supplier.kra_pin }}
{% for supplier in page_obj %} {% endfor %}
{% endblock %}