{% extends "merchant_base.html" %} {% load static %} {% load crispy_forms_tags %} {% block title %} Buyers {% endblock title %} {% block Style %} {% endblock Style %} {% block MainContent %} {% if messages %} {% for message in messages %} {% endfor %} {% endif %}

Buyers

{% if obj_list %} {% for item in obj_list %} {% endfor %} {% else %} {% endif %}
SL Name Contact Email Address Active Status Action
{{forloop.counter}} {{ item.name}} {{ item.contact|default:"N/A" }} {{ item.email|default:"N/A" }} {{ item.address|default:"N/A" }} {{ item.is_active }}
    {% comment %}
  • {% endcomment %}
Data not found
{% if obj_list.has_other_pages %} {% endif %}
{% endblock MainContent %} {% block meassage %} {% include 'notifications/notifications.html' %} {% endblock meassage %} {% block JS %} {% endblock JS %}