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/Form/Reseller.pm

31 lines
509 B

package NGCP::Panel::Form::Reseller;
use HTML::FormHandler::Moose;
extends 'HTML::FormHandler';
use Moose::Util::TypeConstraints;
with 'HTML::FormHandler::Render::Table';
has '+widget_form' => (default => 'Table');
#sub build_form_tags {{ error_class => 'label label-secondary'}}
has_field 'id' => (
type 'NonEditable',
);
has_field 'name' => (
type 'Text',
);
has_field 'contract_id' => (
type 'Integer',
);
has_field 'status' => (
type 'Text',
);
1;
# vim: set tabstop=4 expandtab: