{% extends "admin/base.html" %} {% block page_title %}مدیریت محصولات{% endblock %} {% block page_subtitle %}مدیریت دسته‌بندی‌ها و محصولات پنل {{ panel.name }}{% endblock %} {% block content %}
{{ panel.name }}
{{ 'مرزبان' if panel.panel_type == 'marzban' else '3x-ui' }}

دسته‌بندی‌ها

{{ categories|length }}
{% if categories %}
{% for category in categories %}
{{ category.name }}
{% if category.is_active %} فعال {% else %} غیرفعال {% endif %}
{% endfor %}
{% else %}

هیچ دسته‌بندی‌ای وجود ندارد.

{% endif %}
{% for category in categories %}

{{ category.name }}

{{ products|selectattr('category_id', 'equalto', category.id)|list|length }}
{% set category_products = products|selectattr('category_id', 'equalto', category.id)|list %} {% if category_products %} {% for product in category_products %}
{{ product.name or product.name_product }}
{% if product.is_active %} فعال {% else %} غیرفعال {% endif %}
حجم {{ product.volume_gb }} GB
مدت {{ product.duration_days }} روز
قیمت {{ "{:,}".format(product.price) }} تومان
{% endfor %} {% else %}

هیچ محصولی در این دسته‌بندی وجود ندارد.

{% endif %}
{% endfor %}

محصولات بدون دسته‌بندی

{{ products|selectattr('category_id', 'none')|list|length }}
{% set products_without_category = products|selectattr('category_id', 'none')|list %} {% if products_without_category %} {% for product in products_without_category %}
{{ product.name or product.name_product }}
{% if product.is_active %} فعال {% else %} غیرفعال {% endif %}
حجم {{ product.volume_gb }} GB
مدت {{ product.duration_days }} روز
قیمت {{ "{:,}".format(product.price) }} تومان
{% endfor %} {% else %}

هیچ محصولی بدون دسته‌بندی وجود ندارد.

{% endif %}
{% endblock %}