|
|
@@ -80,7 +80,7 @@
|
|
80
|
80
|
<td>
|
|
81
|
81
|
{% trans "Shipping" %} - {{ shipping_method.name }}
|
|
82
|
82
|
</td>
|
|
83
|
|
- <td class="align-right">{{ shipping_method.basket_charge_incl_tax|currency }}</td>
|
|
|
83
|
+ <td class="align-right">{{ shipping_method.charge_incl_tax|currency }}</td>
|
|
84
|
84
|
</tr>
|
|
85
|
85
|
{% else %}
|
|
86
|
86
|
{# As shipping is discounted, we break it down into its original charge and a discount #}
|
|
|
@@ -90,7 +90,7 @@
|
|
90
|
90
|
</tr>
|
|
91
|
91
|
<tr>
|
|
92
|
92
|
<td>{% trans "Shipping total (before discounts)" %}</td>
|
|
93
|
|
- <td class="align-right">{{ shipping_method.basket_charge_incl_tax_before_discount|currency }}</td>
|
|
|
93
|
+ <td class="align-right">{{ shipping_method.charge_incl_tax_before_discount|currency }}</td>
|
|
94
|
94
|
</tr>
|
|
95
|
95
|
<tr>
|
|
96
|
96
|
{% with discount=shipping_method.get_discount %}
|
|
|
@@ -102,7 +102,7 @@
|
|
102
|
102
|
<td>
|
|
103
|
103
|
{% trans "Shipping total (after discounts)" %}
|
|
104
|
104
|
</td>
|
|
105
|
|
- <td class="align-right">{{ shipping_method.basket_charge_incl_tax|currency }}</td>
|
|
|
105
|
+ <td class="align-right">{{ shipping_method.charge_incl_tax|currency }}</td>
|
|
106
|
106
|
</tr>
|
|
107
|
107
|
{% endif %}
|
|
108
|
108
|
|