Update app.py
Browse files
app.py
CHANGED
@@ -174,15 +174,15 @@ async def handle_message(message: cl.Message):
|
|
174 |
table = "| Field | Information |\n|---|---|\n"
|
175 |
|
176 |
fields_mapping = [
|
177 |
-
('booking_id',
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
]
|
187 |
|
188 |
for field, display_name in fields_mapping:
|
|
|
174 |
table = "| Field | Information |\n|---|---|\n"
|
175 |
|
176 |
fields_mapping = [
|
177 |
+
('booking_id', 'booking_id'),
|
178 |
+
('full_name', 'full_name'),
|
179 |
+
('amount', 'amount'),
|
180 |
+
('checkin', 'checkin'),
|
181 |
+
('checkout', 'checkout'),
|
182 |
+
('address', 'address'),
|
183 |
+
('user_id', 'user_id'),
|
184 |
+
('infotext', 'infotext'),
|
185 |
+
('included', 'included')
|
186 |
]
|
187 |
|
188 |
for field, display_name in fields_mapping:
|