subbuok / templates /order.html
lokeshloki143's picture
Update templates/order.html
2c4a9ec verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Order Summary</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #fdf4e3;
color: #333333;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
min-height: 100vh;
}
.top-bar {
background-color: #FF6F3C;
width: 100%;
padding: 10px 15px;
display: flex;
align-items: center;
box-sizing: border-box;
}
.back-link {
display: flex;
align-items: center;
text-decoration: none;
}
.back-arrow {
font-size: 1.8rem;
color: #000;
font-weight: bold;
}
.back-label {
margin-left: 10px;
color: white;
font-weight: bold;
font-size: 1rem;
}
.yourorder-title {
font-family: Serif;
color: #000000;
font-weight: bold;
text-align: center;
margin: 20px 15px 10px;
font-size: clamp(1.2rem, 5vw, 2rem); /* Responsive font size */
}
.order-container {
max-width: 768px;
margin: 40px auto;
padding: 20px;
background-color: #ffffff;
border-radius: 15px;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
border: 1px solid #ffffff;
flex-grow: 1;
}
.cart-item {
display: flex;
justify-content: space-between;
background-color: #fffcf5;
border-radius: 8px;
border: 1px solid #ffe5b4;
padding: 10px;
margin-bottom: 10px;
}
.cart-item img {
width: 70px;
height: 70px;
object-fit: cover;
border-radius: 5px;
border: 1px solid #ffcc80;
}
.cart-item-details {
flex: 1;
margin-left: 15px;
}
.cart-item-title {
font-size: 1.2rem;
font-weight: bold;
color: #000000;
}
.cart-item-addons,
.cart-item-instructions {
font-size: 0.9rem;
color: #000000;
word-wrap: break-word;
overflow-wrap: break-word;
white-space: normal;
line-height: 1.5;
word-break: break-all;
}
.cart-item-actions {
font-size: 1.2rem;
font-weight: bold;
color: #2b9348;
}
.order-summary {
text-align: right;
margin-top: 15px;
}
.total-price {
font-size: 1.5rem;
font-weight: bold;
color: #2b9348;
}
footer {
background-color: #333333;
color: #ffffff;
text-align: center;
padding: 15px 10px;
margin-top: auto;
}
footer p {
margin: 0;
font-size: 1rem;
}
footer p span {
color: #ffcc00;
font-weight: bold;
}
.d-flex {
margin-bottom: 0px !important;
}
.d-flex:first-child {
margin-top: 0px !important;
}
.d-flex .cart-item-actions {
margin-bottom: 0px !important;
}
</style>
</head>
<body>
<!-- Top Orange Label Bar -->
<div class="top-bar">
<a href="{{ url_for('combined_summary.combined_summary') }}" class="back-link">
<span class="back-arrow"></span>
<span class="back-label">Summary </span>
</a>
</div>
<!-- Title (centered and responsive) -->
<h1 class="yourorder-title">Your Order Summary</h1>
<div class="container">
<div class="order-container">
{% if order %}
{% for line in order.Order_Details__c.split('\n') %}
{% set item_parts = line.split('|') %}
<div class="cart-item">
<img src="{{ item_parts[4].strip().replace('Image:', '') }}"
alt="{{ item_parts[0].strip() }}"
onerror="this.src='/static/placeholder.jpg';">
<div class="cart-item-details">
<div class="cart-item-title">{{ item_parts[0].strip() }}</div>
<div class="cart-item-addons">
<small class="text-muted">Add-ons: {{ item_parts[1].strip().replace('Add-Ons:', '') }}</small>
</div>
<div class="cart-item-instructions">
<small class="text-muted">Instructions: {{ item_parts[2].strip().replace('Instructions:', '') }}</small>
</div>
</div>
<div class="cart-item-actions">
<span style="font-size: 16px; margin-right: 13px">{{ item_parts[3].strip().replace('Price:', '') }}</span>
</div>
</div>
{% endfor %}
<!-- Total Section -->
<div class="container mt-5 cart-item">
<div class="container">
<div class="d-flex justify-content-between mb-3">
<p><strong>Sub-Total:</strong></p>
<p class="cart-item-actions" style="font-size: 16px;">${{ order.Total_Amount__c }}</p>
</div>
<div class="d-flex justify-content-between mb-3">
<p><strong>Discount:</strong></p>
<p class="cart-item-actions" style="font-size: 16px;">${{ "%.2f"|format(order.Discount__c) }}</p>
</div>
<div style="border-bottom: 2px dotted #000; margin-bottom: 10px;"></div>
<div class="d-flex justify-content-between mb-3">
<p><strong>Total Bill:</strong></p>
<p class="cart-item-actions" style="font-size: 16px;">${{ "%.2f"|format(order.Total_Bill__c) }}</p>
</div>
</div>
</div>
{% else %}
<p class="text-center">No order details available.</p>
{% endif %}
</div>
</div>
<!-- Footer -->
<footer>
<p>Thanks for choosing to dine with us! <span>We look forward to serving you again.</span></p>
</footer>
</body>
</html>