{% if sample.section_submission_status == False %}
{% if request.user.is_superuser == True %}
{% include 'sample_app/order_placement/details/super_admin_submission_forms.html' %}
{% endif %}
{% endif %}
SL No |
Type |
Name |
Mill Name |
Construction |
Consumption |
Unit |
Action |
{% for fabric in fabrics %}
{{forloop.counter}} |
{{fabric.fabric_type}} |
{{fabric.fabric_name}} |
{{fabric.mill_name}} |
{{fabric.construction}} |
{{fabric.consumption}} |
{{fabric.unit}} |
|
{% endfor %}
SL No |
Item |
Description |
Supplier |
Consumption |
Unit |
Wastage |
Total Uses |
Action |
{% for trim in trims %}
{{forloop.counter}} |
{{trim.name}} |
{{trim.description}} |
{{trim.supplier}} |
{{trim.consumption}} |
{{trim.unit}} |
{{trim.wastage}} |
{{trim.total_uses}} |
|
{% endfor %}
SL No |
Count |
Description |
Supplier |
Consumption |
Unit |
Wastage |
Total Uses |
Action |
{% for thread in threads %}
{{forloop.counter}} |
{{thread.count}} |
{{thread.description}} |
{{thread.supplier}} |
{{thread.consumption}} |
{{thread.unit}} |
{{thread.wastage}} |
{{thread.total_uses}} |
|
{% endfor %}
Name |
{{washing.name}} |
Plant Type |
{{washing.plant_type}} |
Plant Origin |
{{washing.plant_origin}} |
Process Details |
{{washing.process_details}} |
{% endblock MainContent %}
{% block meassage %}
{% include 'notifications/notifications.html' %}
{% endblock meassage %}
{% block JS %}
{% endblock JS %}