{% extends "marchant_base.html" %}
{% load static %}
{% load crispy_forms_tags %}
{% block title %}
{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{% if request.user.is_superuser == True %}
{% include 'marchant_app/sample_order/approval/index/super_admin_index.html' %}
{% endif %}
{% if request.user.user_type == 'Mother_Organization_admin' %}
{% include 'merchandising/sample_section/index/mother_admin_index.html' %}
{% endif %}
{% if request.user.user_type == 'Sister_Organization_admin' %}
{% include 'merchandising/sample_section/index/sister_admin_index.html' %}
{% endif %}
{% if request.user and request.user.user_type != 'Sister_Organization_admin' and request.user.user_type != 'Mother_Organization_admin' and request.user.is_superuser != True %}
{% include 'merchandising/sample_section/index/merchant_admin.html' %}
{% endif %}
{% if sample_order_list %}
SL No |
Style Number |
Color |
Quantity |
Target Submission Date |
Status |
Action |
{% for sample_order in sample_order_list %}
{{forloop.counter}} |
{{sample_order.style.style_number}} |
{{sample_order.color}} |
{{sample_order.quantity}} |
{{sample_order.target_submission_date}} |
{{sample_order.merchant_sample_approvals_status}} |
|
{% endfor %}
{% if sample_order_list.has_other_pages %}
{% endif %}
{% else %}
SL No |
Style Number |
Color |
Quantity |
Target Submission Date |
Status |
Action |
No Data Found |
{% endif %}
{% endblock MainContent %}
{% block meassage %}
{% include 'notifications/notifications.html' %}
{% endblock meassage %}
{% block JS %}
{% endblock JS %}