Spaces:
Sleeping
Sleeping
Update templates/order_history.html
Browse files- templates/order_history.html +11 -1
templates/order_history.html
CHANGED
@@ -50,6 +50,15 @@
|
|
50 |
margin: 10px 0;
|
51 |
}
|
52 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
.order-status {
|
54 |
font-size: 14px;
|
55 |
font-weight: bold;
|
@@ -162,7 +171,8 @@
|
|
162 |
|
163 |
<!-- Order Status -->
|
164 |
<div class="order-status">
|
165 |
-
<p>Status
|
|
|
166 |
</div>
|
167 |
|
168 |
</div>
|
|
|
50 |
margin: 10px 0;
|
51 |
}
|
52 |
|
53 |
+
.order-status p {
|
54 |
+
margin: 5px 0;
|
55 |
+
}
|
56 |
+
|
57 |
+
.order-status .status-label {
|
58 |
+
color: lightgrey; /* Light grey color for "Status:" label */
|
59 |
+
font-weight: normal; /* Optional: make the label less bold */
|
60 |
+
}
|
61 |
+
|
62 |
.order-status {
|
63 |
font-size: 14px;
|
64 |
font-weight: bold;
|
|
|
171 |
|
172 |
<!-- Order Status -->
|
173 |
<div class="order-status">
|
174 |
+
<p class="status-label">Status:</p> <!-- Light grey for 'Status:' -->
|
175 |
+
<p>{{ order.order_status }}</p> <!-- Display order status -->
|
176 |
</div>
|
177 |
|
178 |
</div>
|