Subbu1304 commited on
Commit
1db411a
·
verified ·
1 Parent(s): 9e34984

Update templates/order.html

Browse files
Files changed (1) hide show
  1. 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="total-price">${{ 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="total-price">${{ "%.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="total-price">${{ "%.2f"|format(order.Total_Bill__c) }}</p>
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>