{% extends "base.html" %} {% block content %}
{{ l('Create promotional discount codes for sales', 'বিক্রয়ের জন্য নতুন প্রোমো কুপন কোড তৈরি করুন') }}
| {{ l('Code', 'কুপন কোড') }} | {{ l('Type', 'ধরন') }} | {{ l('Value', 'মূল্য/ছাড়') }} | {{ l('Expiry Date', 'মেয়াদ') }} | {{ l('Usage Count', 'ব্যবহার সংখ্যা') }} | {{ l('Status', 'অবস্থা') }} | {{ l('Action', 'অ্যাকশন') }} |
|---|---|---|---|---|---|---|
| {{ c.code }} | {{ c.discount_type }} | {{ "%.2f"|format(c.value or 0) }}{{ '%' if c.discount_type == 'percent' else ' ৳' }} | {{ c.expiry_date.strftime('%d-%m-%Y') if c.expiry_date else '—' }} | {{ c.used_count }}{% if c.usage_limit %} / {{ c.usage_limit }}{% endif %} | {% if c.active %} {{ l('Active', 'সক্রিয়') }} {% else %} {{ l('Inactive', 'নিষ্ক্রিয়') }} {% endif %} | |
| {{ l('No coupons created yet.', 'এখনও কোনো কুপন তৈরি করা হয়নি।') }} | ||||||