1field(
2 var: "account_status",
3 label: "Account Status",
4 value: @info.plan_info.status
5)
6
7if @info.tel
8 field(
9 var: "tel",
10 label: "Phone Number",
11 value: @info.tel
12 )
13end
14
15if @info.cnam
16 field(
17 var: "lidb_name",
18 label: "CNAM",
19 value: @info.cnam
20 )
21end
22
23field(
24 var: "balance",
25 label: "Balance",
26 value: "$%.4f" % @info.balance
27)
28
29field(
30 var: "remaining_included_calling_credit",
31 label: "Remaining Included Calling Credit",
32 value: "$%.4f" % @info.remaining_included_calling_credit
33)
34
35render @info.plan_info.template