Change-Id: I3f2a77548c07c686aee2aa771a8b84f4b91650afchanges/07/28807/2
parent
e6738f5e9d
commit
9d4e1de0e3
@ -0,0 +1,46 @@
|
||||
package NGCP::Panel::Form::Subscriber::CallRecordingDelete;
|
||||
use Sipwise::Base;
|
||||
use HTML::FormHandler::Moose;
|
||||
extends 'HTML::FormHandler';
|
||||
|
||||
use HTML::FormHandler::Widget::Block::Bootstrap;
|
||||
|
||||
has '+widget_wrapper' => ( default => 'Bootstrap' );
|
||||
has_field 'submitid' => ( type => 'Hidden' );
|
||||
sub build_render_list {[qw/submitid fields actions/]}
|
||||
sub build_form_element_class { [qw/form-horizontal/] }
|
||||
|
||||
|
||||
has_field 'force_delete' => (
|
||||
type => 'Boolean',
|
||||
label => 'Force delete',
|
||||
element_attr => {
|
||||
rel => ['tooltip'],
|
||||
title => ['Call recording infromation will be removed from database even in case of recording files absence or other impossibility to remove recording files.']
|
||||
},
|
||||
|
||||
);
|
||||
|
||||
has_field 'save' => (
|
||||
type => 'Submit',
|
||||
value => 'Delete',
|
||||
element_class => [qw/btn btn-primary/],
|
||||
do_label => 0,
|
||||
);
|
||||
|
||||
has_block 'fields' => (
|
||||
tag => 'div',
|
||||
class => [qw/modal-body/],
|
||||
render_list => [qw/force_delete/],
|
||||
);
|
||||
|
||||
has_block 'actions' => (
|
||||
tag => 'div',
|
||||
class => [qw/modal-footer/],
|
||||
render_list => [qw/save/],
|
||||
);
|
||||
|
||||
1;
|
||||
|
||||
# vim: set tabstop=4 expandtab:
|
||||
|
Loading…
Reference in new issue