{% extends "marchant_base.html" %} {% load static %} {% load crispy_forms_tags %} {% load widget_tweaks %} {% block title %} Thread Costing {% endblock title %} {% block Style %} {% endblock Style %} {% block MainContent %}
{% if messages %} {% for message in messages %} {% endfor %} {% endif %}

{{style.style_number}}

Thread Costing

{{ form.thread|as_crispy_field }}
Count Total Uses Unit Cost Per Unit Cost per gmt Action
{% render_field form.cost_per_unit type="number" class="form-control" %} 0 {% comment %} {% endcomment %}
{% if thread_cost_list %} {% for thread_cost in thread_cost_list %} {% endfor %} {% endif %}
SL No Count Total Uses Unit Cost Per Unit Cost per gmt Action
{{forloop.counter}} {{ thread_cost.thread.thread.count }} {{ thread_cost.thread.total_uses|floatformat:4}} {{ thread_cost.thread.unit}} {{ thread_cost.cost_per_unit|floatformat:4}} {{ thread_cost.total_cost|floatformat:4}}
    {% if thread_cost.style.is_cost_submit_status == "Not Submit" %}
  • {% else %}
  • {% endif %}
{% endblock MainContent %} {% block meassage %} {% include 'notifications/notifications.html' %} {% endblock meassage %} {% block JS %} {% endblock JS %}