{% extends "base.html" %} {% block content %}

{{ t('products') }}

{{ l('Manage your catalogue, prices, categories and stock levels', 'আপনার পণ্যের তালিকা, বিভাগ, মূল্য ও মজুদ পরিচালনা করুন') }}

{{ l('Print Barcodes', 'বারকোড প্রিন্ট') }} {{ l('Low Stock Alerts', 'স্টক সতর্কতা') }} {{ l('Adjust Stock', 'মজুদ সমন্বয়') }}
{{ l('Total Products', 'মোট পণ্য') }}
{{ total_products if total_products is defined else (products|length) }}
{{ l('Active Products', 'সক্রিয় পণ্য') }}
{{ active_products if active_products is defined else (products|length) }}
{{ l('Low Stock Products', 'কম মজুদ পণ্য') }}
{{ low_stock_count if low_stock_count is defined else 0 }}
{{ l('Out of Stock Products', 'স্টক শেষ পণ্য') }}
{{ out_of_stock_count if out_of_stock_count is defined else 0 }}
{{ l('Add New Product', 'নতুন পণ্য যোগ করুন') }}
{{ l('1. Basic Details & Stock', '১. পণ্যের মৌলিক বিবরণ ও মজুদ') }}
{{ l('2. Pricing & Attributes', '২. মূল্য ও অন্যান্য তথ্য') }}
{{ l('Quick Filter:', 'দ্রুত ফিল্টার:') }}
0 {{ l('Items', 'টি পণ্য') }}
{% for p in products %} {% endfor %}
{{ l('Product Name', 'পণ্যের নাম') }} {{ l('Category', 'বিভাগ') }} {{ l('Buy Price', 'ক্রয় মূল্য') }} {{ l('Sell Price', 'বিক্রয় মূল্য') }} {{ l('Stock Level', 'বর্তমান স্টক') }} {{ l('Expiry Status', 'মেয়াদের অবস্থা') }} {{ l('Actions', 'অ্যাকশন') }}
{{ p.name }}
{{ p.product_code or '' }}
{{ p.category or 'General' }} ৳ {{ "%.2f"|format(p.buy_price or 0) }} ৳ {{ "%.2f"|format(p.sell_price or 0) }} {% if p.stock <= 0 %} 0 {{ p.unit or '' }} {% elif p.stock <= p.reorder_level %} {{ '%.2f'|format(p.stock) if p.stock != p.stock|int else p.stock|int }} {{ p.unit or '' }} {% else %} {{ '%.2f'|format(p.stock) if p.stock != p.stock|int else p.stock|int }} {{ p.unit or '' }} {% endif %} {% if p.expiry_date %} {% if p.days_until_expiry is not none and p.days_until_expiry < 0 %} Expired ({{ p.days_until_expiry|abs }}d ago) {% elif p.days_until_expiry is not none and p.days_until_expiry == 0 %} Expires Today {% elif p.days_until_expiry is not none and p.days_until_expiry <= 30 %} {{ p.days_until_expiry }} days to expire {% else %} {{ p.expiry_date.strftime('%Y-%m-%d') }} {% endif %} {% else %} {% endif %}
{{ l('No products found matching filter.', 'ফিল্টারের সাথে মেলে এমন কোনো পণ্য পাওয়া যায়নি।') }}
{% endblock %}