{% extends "base.html" %} {% block content %}
{{ l('Out of stock and low stock items are shown separately.', 'স্টক শেষ ও কম স্টক আলাদা করে দেখানো হচ্ছে।') }}
| {{ l('Code', 'কোড') }} | {{ l('Product name', 'পণ্যের নাম') }} | {{ l('Current stock', 'বর্তমান স্টক') }} | {{ l('Action', 'করণীয়') }} |
|---|---|---|---|
| {{ p.product_code }} | {{ p.name }} | 0 {{ p.unit or '' }} | {{ l('Place order', 'অর্ডার করুন') }} |
| {{ l('No products are out of stock.', 'কোনো পণ্যের স্টক শেষ হয়নি।') }} | |||
| {{ l('Code', 'কোড') }} | {{ l('Product name', 'পণ্যের নাম') }} | {{ l('Current stock', 'বর্তমান স্টক') }} | {{ l('Reorder level', 'রিঅর্ডার লেভেল') }} | {{ l('Action', 'করণীয়') }} |
|---|---|---|---|---|
| {{ p.product_code }} | {{ p.name }} | {{ '%.2f'|format(p.stock or 0) }} {{ p.unit or '' }} | {{ '%.2f'|format(p.reorder_level or 0) }} | {{ l('Adjust stock', 'স্টক ঠিক করুন') }} |
| {{ l('All products have healthy stock levels.', 'সব পণ্যের স্টক ঠিক আছে।') }} | ||||