Update templates/order.html
Browse files- templates/order.html +10 -10
templates/order.html
CHANGED
@@ -9,7 +9,7 @@
|
|
9 |
<style>
|
10 |
body {
|
11 |
font-family: 'Arial', sans-serif;
|
12 |
-
background-color:
|
13 |
color: #333333;
|
14 |
margin: 0;
|
15 |
padding: 0;
|
@@ -109,7 +109,7 @@
|
|
109 |
.cart-item-actions {
|
110 |
font-size: 1.2rem;
|
111 |
font-weight: bold;
|
112 |
-
color: #2b9348;
|
113 |
}
|
114 |
|
115 |
.order-summary {
|
@@ -157,9 +157,9 @@
|
|
157 |
<body>
|
158 |
<!-- Top Orange Label Bar -->
|
159 |
<div class="top-bar">
|
160 |
-
<a href="/
|
161 |
-
<span class="back-arrow"
|
162 |
-
<span class="back-label">Back to
|
163 |
</a>
|
164 |
</div>
|
165 |
|
@@ -172,8 +172,8 @@
|
|
172 |
{% for line in order.Order_Details__c.split('\n') %}
|
173 |
{% set item_parts = line.split('|') %}
|
174 |
<div class="cart-item">
|
175 |
-
<img src="{{ item_parts[4].strip().replace('Image:', '') }}"
|
176 |
-
alt="{{ item_parts[0].strip() }}"
|
177 |
onerror="this.src='/static/placeholder.jpg';">
|
178 |
<div class="cart-item-details">
|
179 |
<div class="cart-item-title">{{ item_parts[0].strip() }}</div>
|
@@ -184,7 +184,7 @@
|
|
184 |
<small class="text-muted">Instructions: {{ item_parts[2].strip().replace('Instructions:', '') }}</small>
|
185 |
</div>
|
186 |
</div>
|
187 |
-
<div class="cart-item-actions
|
188 |
<span style="font-size: 16px; margin-right: 13px">{{ item_parts[3].strip().replace('Price:', '') }}</span>
|
189 |
</div>
|
190 |
</div>
|
@@ -217,7 +217,7 @@
|
|
217 |
|
218 |
<!-- Footer -->
|
219 |
<footer>
|
220 |
-
<p>
|
221 |
</footer>
|
222 |
</body>
|
223 |
-
</html>
|
|
|
9 |
<style>
|
10 |
body {
|
11 |
font-family: 'Arial', sans-serif;
|
12 |
+
background-color: #fdf4e3;
|
13 |
color: #333333;
|
14 |
margin: 0;
|
15 |
padding: 0;
|
|
|
109 |
.cart-item-actions {
|
110 |
font-size: 1.2rem;
|
111 |
font-weight: bold;
|
112 |
+
color: #2b9348;
|
113 |
}
|
114 |
|
115 |
.order-summary {
|
|
|
157 |
<body>
|
158 |
<!-- Top Orange Label Bar -->
|
159 |
<div class="top-bar">
|
160 |
+
<a href="/cart" class="back-link">
|
161 |
+
<span class="back-arrow">⟨</span>
|
162 |
+
<span class="back-label">Back to Cart</span>
|
163 |
</a>
|
164 |
</div>
|
165 |
|
|
|
172 |
{% for line in order.Order_Details__c.split('\n') %}
|
173 |
{% set item_parts = line.split('|') %}
|
174 |
<div class="cart-item">
|
175 |
+
<img src="{{ item_parts[4].strip().replace('Image:', '') }}"
|
176 |
+
alt="{{ item_parts[0].strip() }}"
|
177 |
onerror="this.src='/static/placeholder.jpg';">
|
178 |
<div class="cart-item-details">
|
179 |
<div class="cart-item-title">{{ item_parts[0].strip() }}</div>
|
|
|
184 |
<small class="text-muted">Instructions: {{ item_parts[2].strip().replace('Instructions:', '') }}</small>
|
185 |
</div>
|
186 |
</div>
|
187 |
+
<div class="cart-item-actions">
|
188 |
<span style="font-size: 16px; margin-right: 13px">{{ item_parts[3].strip().replace('Price:', '') }}</span>
|
189 |
</div>
|
190 |
</div>
|
|
|
217 |
|
218 |
<!-- Footer -->
|
219 |
<footer>
|
220 |
+
<p>Thanks for choosing to dine with us! <span>We look forward to serving you again.</span></p>
|
221 |
</footer>
|
222 |
</body>
|
223 |
+
</html>
|