File size: 3,891 Bytes
921d328
 
 
 
 
 
e32cb2d
921d328
 
 
e32cb2d
061b31d
 
 
 
921d328
061b31d
921d328
 
e32cb2d
 
0bb6af5
e32cb2d
061b31d
 
921d328
061b31d
e32cb2d
0bb6af5
e32cb2d
061b31d
e32cb2d
 
 
061b31d
e32cb2d
0bb6af5
e32cb2d
061b31d
e32cb2d
 
061b31d
0bb6af5
061b31d
 
0bb6af5
 
 
061b31d
0bb6af5
061b31d
0bb6af5
 
061b31d
 
 
 
 
 
 
0bb6af5
061b31d
921d328
e32cb2d
 
 
921d328
0bb6af5
e32cb2d
061b31d
e32cb2d
0bb6af5
061b31d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
921d328
 
 
 
 
 
e32cb2d
 
 
0bb6af5
2a1077d
 
0bb6af5
 
 
061b31d
0bb6af5
 
e32cb2d
2a1077d
 
 
921d328
 
e32cb2d
2a1077d
e32cb2d
 
 
921d328
2a1077d
921d328
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!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; /* Light cream background */
            color: #333333; /* Dark gray text */
            margin: 0;
            padding: 0;
        }

        .order-container {
            max-width: 768px;
            margin: 40px auto;
            padding: 20px;
            background-color: #ffffff; /* White card background */
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow for modern look */
            border: 1px solid #ffe5b4; /* Light orange border */
        }

        .order-title {
            font-size: 2rem;
            font-weight: bold;
            color: #c04e01; /* Warm orange color for the title */
            text-align: center;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: #555555; /* Slightly lighter dark gray */
            margin-bottom: 10px;
        }

        .order-details {
            background-color: #fff5e1; /* Soft beige for the details section */
            border-radius: 10px;
            padding: 15px;
            font-size: 1rem;
            line-height: 1.8;
            color: #4a4a4a; /* Medium gray text for readability */
        }

        .order-item {
            margin-bottom: 10px;
            padding: 10px;
            background-color: #fffcf5; /* Slightly lighter beige for individual items */
            border-radius: 8px;
            border: 1px solid #ffe5b4; /* Light orange border for separation */
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .order-summary {
            margin-top: 20px;
            font-size: 1.2rem;
            font-weight: bold;
            text-align: right;
            color: #333333; /* Dark gray */
        }

        .total-price {
            font-size: 1.8rem;
            color: #2b9348; /* Green for the total price */
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .order-container {
                padding: 15px;
            }

            .order-title {
                font-size: 1.6rem;
            }

            .section-title {
                font-size: 1.3rem;
            }

            .order-details {
                font-size: 0.9rem;
            }

            .total-price {
                font-size: 1.5rem;
            }
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="order-container">
            <h2 class="order-title">Your Order Summary</h2>

            <!-- Items Section -->
            <div>
                <h3 class="section-title">Order Details:</h3>
                {% if order %}
                <div class="order-details">
                    {% for line in order.Order_Details__c.split('\n') %}
                    <div class="order-item">
                        <span>{{ line | safe }}</span>
                    </div>
                    {% endfor %}
                </div>
                {% else %}
                <p>No order details available.</p>
                {% endif %}
            </div>

            <!-- Total Section -->
            {% if order %}
            <div class="order-summary mt-4">
                <span>Total: </span>
                <span class="total-price">${{ order.Total_Amount__c }}</span>
            </div>
            {% endif %}
        </div>
    </div>
</body>
</html>