admin_plan_info.rb
1field(
2 var: "start_date",
3 label: "Customer since",
4 description: @plan_info.relative_start_date,
5 value: @plan_info.formatted_start_date
6)
7
8field(
9 var: "billing_customer_id",
10 label: "Billing Customer Id",
11 value: @plan_info.billing_customer_id
12)
13
14unless @admin_info.subaccounts.empty?
15 table(
16 @admin_info.subaccounts,
17 customer_id: "Customer Id"
18 )
19end