{% extends "base.html" %} {% block title %}سرویس‌های فروخته‌شده{% endblock %} {% block content %}
{% include "_sidebar.html" %}

سرویس‌های فروخته‌شده

{% if orders %}
{% for o in orders %} {% endfor %}
#کاربرمحصولVPNحجمروزساعتیوضعیت
{{ o.id }} {{ o.telegram_id }}{% if o.username %}
@{{ o.username }}{% endif %}
{{ o.product_name or '—' }} {{ o.vpn_username or '—' }} {{ o.volume_gb_override or o.volume_gb or '—' }} GB {{ o.duration_days_override or o.duration_days or '—' }} {% if o.is_hourly %}⏱ {% if o.hourly_active %}فعال{% else %}متوقف{% endif %}{% else %}—{% endif %} {{ o.status }} ویرایش
{% else %}

سرویسی نیست

{% endif %}
{% endblock %}