{% load static %}; Supplier List {% include 'Admin/admin_header.html' %} {% include 'Admin/admin_sidebar.html' %}
{% block body %}
Supplier List
{% if Error%} {% elif messages %} {% for message in messages %} {% endfor %} {% endif %}
{% for data in datas %} {% endfor %}
Sr.No Fisrtname Lastname Shopname Email Mobile Action
{{ forloop.counter }} {{ data.firstname }} {{ data.lastname }} {{ data.shopname }} {{ data.email }} {{ data.mobile }} Edit | Delete
{% endblock %}