{% extends "merchant_base.html" %} {% load static %} {% load crispy_forms_tags %} {% block title %} Merchant Team {% endblock title %} {% block Style %} {% endblock Style %} {% block MainContent %} {% if messages %} {% for message in messages %} {% endfor %} {% endif %} {% if request.user.is_superuser == True or request.user.special_users == True %}

Merchant Team

{% if team_list %}
{% for team in team_list %} {% endfor %}
SL No Department Team Team Code Responsible Person Action
{{forloop.counter}} {{ team.department }} {{ team.team }} {{ team.team_code }} {{ team.responsible_person|default:"N/A" }}
{% else %}
SL No Department Team Team Code Action
No Data Found
{% endif %}
{% endif %} {% endblock MainContent %} {% block meassage %} {% include 'notifications/notifications.html' %} {% endblock meassage %} {% block JS %} {% endblock JS %}