Spaces:
Sleeping
Sleeping
Update templates/order.html
Browse files- templates/order.html +3 -3
templates/order.html
CHANGED
@@ -156,15 +156,15 @@
|
|
156 |
<div class="container ">
|
157 |
<div class="d-flex justify-content-between mb-3">
|
158 |
<p><strong>Sub-Total:</strong></p>
|
159 |
-
<p class="
|
160 |
</div>
|
161 |
<div class="d-flex justify-content-between mb-3">
|
162 |
<p><strong>Discount:</strong></p>
|
163 |
-
<p class="
|
164 |
</div>
|
165 |
<div class="d-flex justify-content-between mb-3">
|
166 |
<p><strong>Total Bill:</strong></p>
|
167 |
-
<p class="
|
168 |
</div>
|
169 |
</div>
|
170 |
</div>
|
|
|
156 |
<div class="container ">
|
157 |
<div class="d-flex justify-content-between mb-3">
|
158 |
<p><strong>Sub-Total:</strong></p>
|
159 |
+
<p class="cart-item-actions">${{ order.Total_Amount__c }}</p>
|
160 |
</div>
|
161 |
<div class="d-flex justify-content-between mb-3">
|
162 |
<p><strong>Discount:</strong></p>
|
163 |
+
<p class="cart-item-actions">${{ "%.2f"|format(order.Discount__c) }}</p>
|
164 |
</div>
|
165 |
<div class="d-flex justify-content-between mb-3">
|
166 |
<p><strong>Total Bill:</strong></p>
|
167 |
+
<p class="cart-item-actions">${{ "%.2f"|format(order.Total_Bill__c) }}</p>
|
168 |
</div>
|
169 |
</div>
|
170 |
</div>
|