1form! # Always form with fixed even when nothing to fill to prevent autonext from chatbot
2title "Order #{@label || '(e)SIM'}"
3
4instructions(
5 "Our #{@label || '(e)SIM'}s provide a plan that is prepay pay-as-you-go " \
6 "and purely LTE data roaming over all of the USA and Canada " \
7 "(on Rogers, Bell, Telus, AT&T, T-Mobile, and Union Telecom). " \
8 "Prepaid data never expires so long as your plan is active."
9)
10
11field(
12 label: "Plan Details",
13 value: @plan.to_s,
14 type: "fixed",
15 description: "Prepaid in increments of 5 GB"
16)
17
18field(
19 label: "Purchase Price",
20 value: "$%.2f" % @price,
21 type: "fixed",
22 description: "Includes first year and 1 GB data"
23)