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

14 lines
284 B

package NGCP::Panel::Field::ContractStatus;
use HTML::FormHandler::Moose;
extends 'HTML::FormHandler::Field::Compound';
has_field 'status' => (
type => '+NGCP::Panel::Field::ContractStatusSelect',
label => 'Status',
required => 1,
);
1;
# vim: set tabstop=4 expandtab: