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

Add Buyer Notifier

{% if obj_list %} {% regroup obj_list by buyer as grouped_objects %} {% for group in grouped_objects %} {% for item in group.list %} {% if forloop.first %} {% endif %} {% endfor %} {% endfor %} {% else %} {% endif %}
SL Buyer Notifier Name Contact Email Address Active Status Action
{{ forloop.parentloop.counter }} {{ group.grouper.name }}{{ item.name }} {{ item.contact|default:"N/A" }} {{ item.email|default:"N/A" }} {{ item.address|default:"N/A" }} {{ item.is_active }}
Data not found
{% if obj_list.has_other_pages %} {% endif %}
{% endblock MainContent %} {% block meassage %} {% include 'notifications/notifications.html' %} {% endblock meassage %} {% block JS %} {% endblock JS %}