{% extends 'orders/base.html' %} {% block title %}List all orders{% endblock %} {% block body %}

Create new order

{% for order in object_list %} {% empty %} {% endfor %}
Order id Marketplace Id flux Purchase date Amount Tax Shipping Commission Processing fee Comments Customer id Ip Nb items
{{ order.order_id }} {{ order.marketplace }} {{ order.idFlux }} {{ order.order_purchase }} {{ order.order_amount }} {{ order.order_tax }} {{ order.order_shipping }} {{ order.order_commission }} {{ order.order_processing_fee }} {{ order.order_comments }} {{ order.customer_id }} {{ order.order_ip }} {{ order.order_items }}
No orders yet.
{% endblock %}