Spaces:
Sleeping
Sleeping
Update templates/order.html
Browse files- templates/order.html +2 -2
templates/order.html
CHANGED
|
@@ -120,7 +120,7 @@
|
|
| 120 |
{% if order %}
|
| 121 |
{% for line in order.Order_Details__c.split('\n') %}
|
| 122 |
{% set item_parts = line.split('|') %}
|
| 123 |
-
<div class="
|
| 124 |
<!-- Item Image -->
|
| 125 |
<img src="{{ item_parts[4].strip().replace('Image:', '') }}"
|
| 126 |
alt="{{ item_parts[0].strip() }}"
|
|
@@ -170,7 +170,7 @@
|
|
| 170 |
<p class="cart-item-actions">${{ "%.2f"|format(order.Total_Bill__c) }}</p>
|
| 171 |
</div>
|
| 172 |
</div> -->
|
| 173 |
-
<div class="
|
| 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>
|
|
|
|
| 120 |
{% if order %}
|
| 121 |
{% for line in order.Order_Details__c.split('\n') %}
|
| 122 |
{% set item_parts = line.split('|') %}
|
| 123 |
+
<div class="container">
|
| 124 |
<!-- Item Image -->
|
| 125 |
<img src="{{ item_parts[4].strip().replace('Image:', '') }}"
|
| 126 |
alt="{{ item_parts[0].strip() }}"
|
|
|
|
| 170 |
<p class="cart-item-actions">${{ "%.2f"|format(order.Total_Bill__c) }}</p>
|
| 171 |
</div>
|
| 172 |
</div> -->
|
| 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>
|