{% extends "merchant_base.html" %} {% load static %} {% load crispy_forms_tags %} {% load widget_tweaks %} {% block title %}Global Accessory Add{% endblock title %} {% block Style %} {% endblock Style %} {% block MainContent %}
{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
{% csrf_token %}
Global Accessory
{{form.name|as_crispy_field}}
{{form.reference|as_crispy_field}}
{{form.unit_category|as_crispy_field}}
Unit
{{unit_formset.management_form}} {% for unit_form in unit_formset %} {% endfor %}
From Unit To Unit co_efficient
{{unit_form.from_unit|add_class:"form-control"}} {{unit_form.to_unit|add_class:"form-control"}} {{unit_form.co_efficient_multiply_factor|add_class:"form-control"}}

Accesory List

{% if accessory %} {% for item in accessory %} {% endfor %} {% else %} {% endif %}
SL Name Reference Unit Type Action
{{forloop.counter}} {{item.name}} {% if item.reference %} {{ item.reference }} {% else %} N/A {% endif %} {{ item.unit_type }}
No Data Found
{% endblock MainContent %} {% block meassage %} {% include 'notifications/notifications.html' %} {% endblock meassage %} {% block JS %} {% endblock JS %}