Spaces:
Sleeping
Sleeping
Update templates/order.html
Browse files- templates/order.html +9 -3
templates/order.html
CHANGED
@@ -62,6 +62,12 @@
|
|
62 |
font-size: 1.2rem;
|
63 |
font-weight: bold;
|
64 |
color: #2b9348; /* Green for the price */
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
}
|
66 |
.order-summary {
|
67 |
text-align: right;
|
@@ -173,17 +179,17 @@
|
|
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-
|
177 |
</div>
|
178 |
<div class="d-flex justify-content-between mb-3">
|
179 |
<p><strong>Discount:</strong></p>
|
180 |
-
<p class="cart-item-
|
181 |
</div>
|
182 |
<!-- Add dotted line here -->
|
183 |
<div style="border-bottom: 1px dotted #000; margin-bottom: 10px;"></div>
|
184 |
<div class="d-flex justify-content-between mb-3">
|
185 |
<p><strong>Total Bill:</strong></p>
|
186 |
-
<p class="cart-item-
|
187 |
</div>
|
188 |
</div>
|
189 |
|
|
|
62 |
font-size: 1.2rem;
|
63 |
font-weight: bold;
|
64 |
color: #2b9348; /* Green for the price */
|
65 |
+
margin-bottom:50px;
|
66 |
+
}
|
67 |
+
.cart-item-actions1 {
|
68 |
+
font-size: 1.2rem;
|
69 |
+
font-weight: bold;
|
70 |
+
color: #2b9348; /* Green for the price */
|
71 |
}
|
72 |
.order-summary {
|
73 |
text-align: right;
|
|
|
179 |
<div class="container">
|
180 |
<div class="d-flex justify-content-between mb-3">
|
181 |
<p><strong>Sub-Total:</strong></p>
|
182 |
+
<p class="cart-item-actions1" style="font-size: 16px;">${{ order.Total_Amount__c }}</p>
|
183 |
</div>
|
184 |
<div class="d-flex justify-content-between mb-3">
|
185 |
<p><strong>Discount:</strong></p>
|
186 |
+
<p class="cart-item-actions1" style="font-size: 16px;">${{ "%.2f"|format(order.Discount__c) }}</p>
|
187 |
</div>
|
188 |
<!-- Add dotted line here -->
|
189 |
<div style="border-bottom: 1px dotted #000; margin-bottom: 10px;"></div>
|
190 |
<div class="d-flex justify-content-between mb-3">
|
191 |
<p><strong>Total Bill:</strong></p>
|
192 |
+
<p class="cart-item-actions1" style="font-size: 16px;">${{ "%.2f"|format(order.Total_Bill__c) }}</p>
|
193 |
</div>
|
194 |
</div>
|
195 |
|