Subbu1304 commited on
Commit
167e922
·
verified ·
1 Parent(s): 339db4d

Update templates/order.html

Browse files
Files changed (1) hide show
  1. templates/order.html +3 -3
templates/order.html CHANGED
@@ -173,16 +173,16 @@
173
  <div class="container">
174
  <div class="d-flex justify-content-between mb-3">
175
  <p><strong>Sub-Total:</strong></p>
176
- <p class="cart-item-actions">${{ order.Total_Amount__c }}</p>
177
  </div>
178
  <div class="d-flex justify-content-between mb-3">
179
  <p><strong>Discount:</strong></p>
180
- <p class="cart-item-actions">${{ "%.2f"|format(order.Discount__c) }}</p>
181
  </div>
182
  <!-- Add dotted line here -->
183
  <div class="d-flex justify-content-between mb-3" style="border-bottom: 1px dotted #000;">
184
  <p><strong>Total Bill:</strong></p>
185
- <p class="cart-item-actions">${{ "%.2f"|format(order.Total_Bill__c) }}</p>
186
  </div>
187
  </div>
188
 
 
173
  <div class="container">
174
  <div class="d-flex justify-content-between mb-3">
175
  <p><strong>Sub-Total:</strong></p>
176
+ <p class="cart-item-actions" style="font-size: 16px;">${{ order.Total_Amount__c }}</p>
177
  </div>
178
  <div class="d-flex justify-content-between mb-3">
179
  <p><strong>Discount:</strong></p>
180
+ <p class="cart-item-actions" style="font-size: 16px;">${{ "%.2f"|format(order.Discount__c) }}</p>
181
  </div>
182
  <!-- Add dotted line here -->
183
  <div class="d-flex justify-content-between mb-3" style="border-bottom: 1px dotted #000;">
184
  <p><strong>Total Bill:</strong></p>
185
+ <p class="cart-item-actions" style="font-size: 16px;">${{ "%.2f"|format(order.Total_Bill__c) }}</p>
186
  </div>
187
  </div>
188