{% extends "shop/base.html" %} {% load i18n static %} {% block title %}{% translate "Pay your order" %}{% endblock %} {% block content %}
| {% translate "Image" %} | {% translate "Product" %} | {% translate "Price" %} | {% translate "Quantity" %} | {% translate "Total" %} |
|---|---|---|---|---|
|
|
{{ item.product.name }} | ${{ item.price }} | {{ item.quantity }} | ${{ item.get_cost }} |
| {% translate "Subtotal" %} | ${{ order.get_total_cost_before_discount|floatformat:2 }} | |||
| {% blocktranslate with code=order.coupon.code discount=order.discount %} "{{ code }}" ({{ discount }}% off) {% endblocktranslate %} | - ${{ order.get_discount|floatformat:2 }} | |||
| {% translate "Total" %} | ${{ order.get_total_cost|floatformat:2 }} | |||