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ı)
Kupon Ekle
Ürünler
| 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
| 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
| 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 %} |