{% extends "merchant_base.html" %}
{% load static %}
{% load crispy_forms_tags %}
{% load widget_tweaks %}
{% block title %}
{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}
| SL
|
Base Unit |
Action |
{% comment %} Action | {% endcomment %}
{% if accessory %}
| 1 |
{{accessory}} |
{% if not accessory.unit_type.base_unit %}
Must ADD Base Unit
{% else %}
{{ accessory.unit_type.base_unit }}
{% endif %}
|
-
{% comment %}
-
{% endcomment %}
|
{% else %}
| No Data Found |
{% endif %}
| SL
|
Unit |
Action |
{% comment %} Action | {% endcomment %}
{% if accessory_units %}
{% for accessory in accessory_units %}
| {{forloop.counter}} |
{{accessory}} |
{{accessory.name.unit_category}} |
-
{% comment %}
-
{% endcomment %}
|
{% endfor %}
{% else %}
| No Data Found |
{% endif %}
| SL
|
TO |
Coefficient |
Action |
{% comment %} Action | {% endcomment %}
{% if accessory_unit_conversion %}
{% for conversion in accessory_unit_conversion %}
| {{forloop.counter}} |
{{conversion.type}} |
{{conversion.from_unit}} ({{conversion.from_unit.name.unit_category}}) |
{{conversion.to_unit}} ({{conversion.from_unit.name.unit_category}}) |
{{conversion.co_efficient_multiply_factor}} |
|
{% endfor %}
{% else %}
| No Data Found |
{% endif %}
{% endblock MainContent %}
{% block meassage %}
{% include 'notifications/notifications.html' %}
{% endblock meassage %}
{% block JS %}
{% endblock JS %}