{% extends 'base.html' %} {% load bootstrap3 %} {% block content %}
Name | Quantity | Price | Total |
---|---|---|---|
{{ order_product.product.name }} | {{ order_product.quantity }} | {{ order_product.product.price }} | {{ order_product.total }} {% endfor %} {# TODO: Add total + VAT info #} |