{% extends "base.html" %} {% block title %}محصولات{% endblock %} {% block content %}
{% include "_sidebar.html" %}

محصولات

{% if products %}
{% for p in products %} {% endfor %}
ردیفنامدستهقیمتحجمروزHWIDنقشپنل‌ها
{{ p.sort_order }} {{ p.name }} {{ p.category_name or '—' }} {{ "{:,.0f}".format(p.price|float) if p.price is not none else '0' }} {{ p.volume_gb }} GB {{ p.duration_days }} {% if p.hwid_limit is not none and p.hwid_limit %}{{ p.hwid_limit }}{% else %}∞{% endif %} {{ roles.get(p.target_role, p.target_role) if roles else p.target_role }} {% if p.panels %}{% for x in p.panels %}{{ x.name }}{% if not loop.last %}، {% endif %}{% endfor %}{% else %}—{% endif %}
ویرایش
{% else %}

محصولی نیست

+ افزودن
{% endif %}
{% endblock %}