{% extends "base.html" %} {% block title %}Supplier List{% endblock %} {% block content %}

Suppliers

Add New Supplier {% for supplier in page_obj %} {% empty %} {% endfor %}
Name Company Contact Email Actions
{{ supplier.name }} {{ supplier.company_name }} {{ supplier.phone }} {{ supplier.email }} View / Edit Delete Ledger
No suppliers found.
{% endblock %}