From dccc35b79466c39b861593b11c7caf99f34aad89 Mon Sep 17 00:00:00 2001 From: kououken Date: Fri, 15 Feb 2019 15:18:02 -0800 Subject: [PATCH] Fixed stupid single vs. double quote error. --- back/backend/policy.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/back/backend/policy.py b/back/backend/policy.py index 0d57b96..723a76b 100644 --- a/back/backend/policy.py +++ b/back/backend/policy.py @@ -79,7 +79,7 @@ pol.add_section(flight_section) lodging_section = Section( title="Hotel Info", html_description="

Enter hotel info here.\nPer diem rates can be found at " - "this link

", + "this link

", fields={ "check-in_date": {"number": 0, "label": "Check-in date", "field_type": "date"}, "check-out_date": {"number": 1, "label": "Check-out date", "field_type": "date"}, @@ -126,7 +126,7 @@ pol.add_section(transport_section) per_diem_section = Section( title="Per Diem", html_description="

Enter info about meals and incidentals here.\nPer diem rates can be found at " - "this link

", + "this link

", fields={ "duration": {"number":0, "label": "How many days was your trip?", "field_type": "integer"}, "rate": {"number":1, "label": "What is the per diem rate for your destination?", "field_type": "decimal"},