{% extends 'admin_pages/base_admin.html' %} {% block title %}Order #{{ order.id }} | Admin Panel{% endblock %} {% block content %}
Customer: {{ order.full_name }}
Phone: {{ order.phone }}
Address: {{ order.address }}
Status: {{ order.status }}
Payment: {{ order.payment_method }}
Date: {{ order.created_at|date:"Y-m-d H:i" }}
Status: {{ order.status }}
{% endif %}Product | Qty | Price | Total |
---|---|---|---|
{{ item.product.name }} | {{ item.quantity }} | ${{ item.price }} | ${{ item.get_total_price }} |