{% extends 'admin_pages/base_admin.html' %} {% block title %}Order List | Admin Panel{% endblock %} {% block content %}

Orders

{% block breadcrumbs %} {% endblock %}
{% if perms.website.bulk_status %}
{% csrf_token %}
{% if perms.website.download_excel %}
{% endif %} {% if perms.website.download_pdf %}
{% endif %}
{% endif %} {% if perms.website.bulk_status %} {% endif %} {% for order in orders %} {% if perms.website.bulk_status %} {% endif %} {% empty %} {% endfor %}
ID Customer Phone Total Status Date Actions
{{ order.id }} {{ order.full_name }} {{ order.phone }} ${{ order.total_price }} {{ order.status }} {{ order.created_at|date:"Y-m-d H:i" }} {% if perms.website.view_order_details %} View {% endif %} {% if perms.website.download_invoice_pdf %} Print {% endif %}
No orders found.
{% if perms.website.bulk_status %}
{% endif %} {% if orders.has_other_pages %} {% endif %} {% if perms.website.bulk_status %} {% endif %} {% endblock %}