Spaces:
Sleeping
Sleeping
Update templates/order.html
Browse files- templates/order.html +4 -3
templates/order.html
CHANGED
@@ -172,18 +172,19 @@
|
|
172 |
<div class="container">
|
173 |
<div class="d-flex justify-content-between mb-3">
|
174 |
<p><strong>Sub-Total:</strong></p>
|
175 |
-
<p class="cart-item-actions">${{ order.Total_Amount__c |
|
176 |
</div>
|
177 |
<div class="d-flex justify-content-between mb-3">
|
178 |
<p><strong>Discount:</strong></p>
|
179 |
-
<p class="cart-item-actions">${{ order.Discount__c |
|
180 |
</div>
|
181 |
<div class="d-flex justify-content-between mb-3">
|
182 |
<p><strong>Total Bill:</strong></p>
|
183 |
-
<p class="cart-item-actions">${{ order.Total_Bill__c |
|
184 |
</div>
|
185 |
</div>
|
186 |
|
|
|
187 |
</div>
|
188 |
|
189 |
|
|
|
172 |
<div class="container">
|
173 |
<div class="d-flex justify-content-between mb-3">
|
174 |
<p><strong>Sub-Total:</strong></p>
|
175 |
+
<p class="cart-item-actions">${{ order.Total_Amount__c | float | format('%.1f') }}</p>
|
176 |
</div>
|
177 |
<div class="d-flex justify-content-between mb-3">
|
178 |
<p><strong>Discount:</strong></p>
|
179 |
+
<p class="cart-item-actions">${{ order.Discount__c | float | format('%.1f') }}</p>
|
180 |
</div>
|
181 |
<div class="d-flex justify-content-between mb-3">
|
182 |
<p><strong>Total Bill:</strong></p>
|
183 |
+
<p class="cart-item-actions">${{ order.Total_Bill__c | float | format('%.1f') }}</p>
|
184 |
</div>
|
185 |
</div>
|
186 |
|
187 |
+
|
188 |
</div>
|
189 |
|
190 |
|