You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ngcp-panel/lib/NGCP/Panel/Field/BillingProfile.pm

14 lines
302 B

package NGCP::Panel::Field::BillingProfile;
use HTML::FormHandler::Moose;
extends 'HTML::FormHandler::Field::Compound';
has_field 'billing_profile' => (
type => '+NGCP::Panel::Field::BillingProfileSelect',
label => 'Billing Profile',
required => 1,
);
1;
# vim: set tabstop=4 expandtab: