{% extends 'base.html' %} {% load static %} {% block title %}Orders{% endblock %} {% block javascript %} {% endblock %} {% block content %} {% include 'navbar.html' %} {% include 'includes/card.html' %} {% include 'message.html' %}

Orders Of All Customers


{% include 'includes/order_list.html' %}
Showing {{start}} to {{end}} of {{total_orders}} orders
{% if orders.has_other_pages %}
    {% if orders.has_previous %} First Previous {% else %} {% endif %} {% for i in orders.paginator.page_range %} {% if orders.number == i %}
  • {{ i }} (current)
  • {% else %}
  • {{ i }}
  • {% endif %} {% endfor %} {% if products.has_next %} Next Last {% else %} {% endif %}
{% endif %}
{% endblock%}