{% extends "vendor/base.html" %} {% block content %}
# | Item | Price | Quantity | Total |
---|---|---|---|---|
{{ forloop.counter }} | {{item.name}} | ${{item.price|floatformat:2}} | add{{item.quantity}} remove | ${{item.total|floatformat:2}} |
Subtotal | ${{ object.subtotal|floatformat:2 }} | |||
Sales Tax | {% if object.tax == None %}TBD{% else %}${{ object.tax|floatformat:2 }}{% endif %} | |||
Shipping | {% if object.shipping == None %}TBD{% else %}${{ object.shipping|floatformat:2 }}{% endif %} | |||
Total | {% if object.total == None %}TBD{% else %}${{ object.total|floatformat:2 }}{% endif %} |