{% 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}}
{{form.category|as_crispy_field}}

Accesory List

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