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/Contact.pm

21 lines
417 B

package NGCP::Panel::Field::Contact;
use HTML::FormHandler::Moose;
extends 'HTML::FormHandler::Field::Compound';
has_field 'contact' => (
type => '+NGCP::Panel::Field::ContactSelect',
label => 'Contact',
required => 1,
);
has_field 'create' => (
type => 'Button',
label => 'or',
value => 'Create Contact',
element_class => [qw/btn btn-tertiary/],
);
1;
# vim: set tabstop=4 expandtab: