~singpolyma/sgx-jmp

ref: 16484395795ac8f31f572f259e933830e26aa784 sgx-jmp/forms/customer_info_partial.rb -rw-r--r-- 375 bytes
16484395root21 Add missing require 6 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
field(
	var: "account_status",
	label: "Account Status",
	value: @info.plan_info.status
)

if @info.tel
	field(
		var: "tel",
		label: "Phone Number",
		value: @info.tel
	)
end

if @info.cnam
	field(
		var: "lidb_name",
		label: "CNAM",
		value: @info.cnam
	)
end

field(
	var: "balance",
	label: "Balance",
	value: "$%.4f" % @info.balance
)

render @info.plan_info.template