{% extends 'base.html' %} {% load commonmark %} {% load static %} {% load imageutils %} {% block extra_head %} {% endblock extra_head %} {% block content %}

Village Orders

Use this view to look at village orders.
This table shows all OrderProductRelations which are in the Village category (not including handed out, unpaid, cancelled and refunded orders). The table is initally sorted by order ID but the sorting can be changed by clicking the column headlines (if javascript is enabled).

{% for productrel in orderproductrelation_list %} {% endfor %}
Order User Email OPR Id Product Quantity
Order #{{ productrel.order.id }} {{ productrel.order.user }} {{ productrel.order.user.email }} {{ productrel.id }} {{ productrel.product.name }} {{ productrel.quantity }}
{% endblock content %}