{% extends "base.html" %} {% block title %}مدیریت محصولات{% endblock %} {% block page_title %}مدیریت محصولات{% endblock %} {% block content %}
{% set services = {} %} {% for p in products %} {% if p.service not in services %}{% set _ = services.update({p.service: []}) %}{% endif %} {% endfor %} {% set grouped = namespace(data={}) %} {% for p in products %} {% endfor %}

📦 محصولات ({{ products|length }})

{{ products|selectattr('is_active','equalto',1)|list|length }} فعال
{% set current_service = namespace(name='') %} {% for p in products %} {% if p.service != current_service.name %} {% set current_service.name = p.service %} {% endif %} {% endfor %} {% if not products %} {% endif %}
سرویسمدتقیمتقیمت عمدهوضعیتعملیات
🗂 {{ p.service }}
└─ {{ p.duration }} {{ "{:,}".format(p.price) }} ت {{ "{:,}".format(p.bulk_price or 0) }} ت {% if p.is_active %} ✅ فعال {% else %} ❌ غیرفعال {% endif %}
محصولی وجود ندارد

➕ افزودن محصول جدید

{% for p in products %}

💡 راهنما

✏️ ویرایش قیمت و اطلاعات

⏸ غیرفعال کردن (از ربات پنهان میشه)

▶️ فعال کردن مجدد

🗑 حذف کامل


برای افزودن چند مدت به یه سرویس، نام سرویس را یکسان بنویس.

{% endblock %}