Vector Shop - Admin Panel

{% with messages = get_flashed_messages() %} {% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% endwith %}

Toplam Gelir

${{ "%.2f"|format(total_revenue) }}

Toplam Sipariş

{{ total_orders }}

Aktif Ürünler

{{ products|length }}

Kuponlar

{{ coupons|length }}

Ürün Ekle

CSV ile Toplu Ürün Ekle (veri.csv formatı)

Format (pipe | ile ayrılmış): id|title|description|price|image|category|tags|keywords|popular|permanentlink|customers

Kupon Ekle

Ürünler

{% for product in products %} {% endfor %}
ID Ürün Adı Fiyat Paddle ID Release Tag Durum İşlem
{{ product.id }} {{ product.name }} ${{ "%.2f"|format(product.price) }} {{ product.paddle_product_id }} {{ product.github_release_tag or '-' }} {% if product.active %} Aktif {% else %} Pasif {% endif %}

Son Siparişler

{% for order in orders %} {% endfor %}
Sipariş ID Ürün Müşteri Tutar Durum Teslimat Tarih
{{ order.order_id }} {{ order.product.name if order.product else 'N/A' }} {{ order.customer_email }} ${{ "%.2f"|format(order.amount) }} {% if order.status == 'completed' %} Tamamlandı {% else %} {{ order.status }} {% endif %} {% if order.delivery_sent %} Gönderildi {% else %} Bekliyor {% endif %} {{ order.created_at.strftime('%Y-%m-%d %H:%M') }}

Kuponlar

{% for coupon in coupons %} {% endfor %}
Kod İndirim % Kullanım Max Kullanım Durum
{{ coupon.code }} {{ coupon.discount_percent }}% {{ coupon.current_uses }} {{ coupon.max_uses or '∞' }} {% if coupon.active and coupon.is_valid() %} Aktif {% else %} Pasif {% endif %}