Skip to content

Commit

Permalink
Updat casing
Browse files Browse the repository at this point in the history
  • Loading branch information
mhieta committed Feb 2, 2024
1 parent 57745e3 commit 7efa735
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions parking_permits/talpa/order.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,14 +78,14 @@ def append_detail_meta(cls, item, permit, fixed_end_time=None):
% {"month": permit.month_count}
if permit.is_fixed_period
else _("Open ended 1 month"),
"visibleInCheckout": True,
"visible_in_checkout": True,
"ordinal": 1,
},
{
"key": "startDate",
"label": _("Parking permit start date*"),
"value": start_time,
"visibleInCheckout": True,
"visible_in_checkout": True,
"ordinal": 2,
},
{
Expand All @@ -94,14 +94,14 @@ def append_detail_meta(cls, item, permit, fixed_end_time=None):
"value": _(
"* Parking permit is valid from the start date of your choice, once the payment has been accepted"
),
"visibleInCheckout": True,
"visible_in_checkout": True,
"ordinal": 4,
},
{
"key": "copyright",
"label": "",
"value": _("Source: Transport register, Traficom"),
"visibleInCheckout": True,
"visible_in_checkout": True,
"ordinal": 5,
},
]
Expand All @@ -115,7 +115,7 @@ def append_detail_meta(cls, item, permit, fixed_end_time=None):
if permit.is_fixed_period
else _("Parking permit period expiration date"),
"value": end_time,
"visibleInCheckout": True,
"visible_in_checkout": True,
"ordinal": 3,
}
)
Expand Down

0 comments on commit 7efa735

Please sign in to comment.