{% extends "marchant_base.html" %}
{% load static %}
{% load crispy_forms_tags %}
{% block title %}
{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{% comment %} {% if request.user.is_superuser == True %}
{% include 'marchant_app/style/index/super_admin_index.html' %}
{% endif %} {% endcomment %}
{% comment %} {% if request.user.user_type == 'Mother_Organization_admin' %}
{% include 'merchandising/style/index/mother_admin_index.html' %}
{% endif %} {% endcomment %}
{% comment %} {% if request.user.user_type == 'Sister_Organization_admin' %}
{% include 'merchandising/style/index/sister_admin_index.html' %}
{% endif %} {% endcomment %}
{% comment %}
{% 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/style/index/merchant_admin.html' %}
{% endif %} {% endcomment %}
{% if style_list %}
SL
|
{% comment %}
Mother Organization |
Sister Organization |
{% endcomment %}
Style Description |
Buyer |
Costing |
Sample |
Date |
Team |
Action |
{% for style in style_list %}
{{forloop.counter}} |
{% comment %}
{{ style.mother_organization }} |
{{ style.sister_organization }} |
{% endcomment %}
{{ style.style_number }} |
{{ style.style_description }} |
{{ style.buyer }} |
{% if style.is_cost_submit_status == "Approved" %}
{{style.is_cost_submit_status }}
|
{% elif style.is_cost_submit_status == "Not Submit" %}
Not Submitted
|
{% elif style.is_cost_submit_status == "Rejected" %}
{{style.is_cost_submit_status }}
|
{% else %}
{{style.is_cost_submit_status }}
|
{% endif %}
Pending |
{{ style.created_date }} |
{% if style.team %}
{{style.team}} |
{% else %}
|
{% endif %}
{% if style.is_cost_submit_status == "Not Submit" %}
|
{% else %}
|
{% endif %}
{% endfor %}
{% if style_list.has_other_pages %}
{% endif %}
{% else %}
SL No |
{% comment %}
Mother Organization |
Sister Organization |
{% endcomment %}
Branch |
Style Number |
Style Description |
Buyer |
Costing |
Sample |
Date |
Team |
Action |
No Data Found |
{% endif %}
{% endblock MainContent %}
{% block meassage %}
{% include 'notifications/notifications.html' %}
{% endblock meassage %}
{% block JS %}
{% endblock JS %}