{% extends "merchant_base.html" %} {% load static %} {% load crispy_forms_tags %} {% block title %} Accessory Unit {% endblock title %} {% block Style %} {% endblock Style %} {% block MainContent %} {% if messages %} {% for message in messages %} {% endfor %} {% endif %}
{% if request.user.is_superuser == True %}
{% csrf_token %}
Accessory Unit Add
{{form.type|as_crispy_field}}
{{form.name|as_crispy_field}}
{% endif %}

Accessory Unit Index

{% if unit %} {% for item in unit %} {% endfor %} {% else %} {% endif %}
SL Type Unit Name Action
{{forloop.counter}} {{ item.type }} {{ item.name }}
No Data Is Found
{% endblock MainContent %} {% block meassage %} {% include 'notifications/notifications.html' %} {% endblock meassage %} {% block JS %} {% endblock JS %}