{% extends "admin/admin_base.html" %} {% block content %}
Gestionează produsele, imaginile dedicate, categoriile și comenzile.
| Copertă (Default) | Titlu & Cale | Tip | Preț | Categorie | Acțiuni |
|---|---|---|---|---|---|
|
{% if p.featured_image %}
📦
{% endif %}
|
{{ p.title }} /shop/product/{{ p.slug }} |
{% if p.product_type == 'digital' %} ⚡ Digital {% else %} 📦 Fizic {% endif %} | {{ "%.2f"|format(p.price) }} {{ p.currency }} | {{ p.category_name or '—' }} |
|
Nu există produse adăugate.
{% endif %}Nu există categorii create.
{% endif %}| Comandă | Client | Produse | Total | Metodă Plată | Status Plată | Status Livrare |
|---|---|---|---|---|---|---|
| #{{ o.order_number }} |
{{ o.customer_name }} {{ o.customer_email }} {{ o.customer_phone or '' }} |
{% for item in o.order_items %}
• {{ item.product_title }} (x{{ item.quantity }})
{% endfor %}
|
{{ "%.2f"|format(o.total_amount) }} {{ o.currency }} | {{ o.payment_method }} |
Nu există nicio comandă plasată încă.
{% endif %}