diff options
| author | Mark Wells <mark@freeside.biz> | 2015-12-21 14:41:40 -0800 |
|---|---|---|
| committer | Mark Wells <mark@freeside.biz> | 2015-12-21 14:45:17 -0800 |
| commit | 796750496ab90b7e10823e2a3a008b600ab8f090 (patch) | |
| tree | 25817c61ebbe5a2322357c7ac641ef3dea695b70 /httemplate/edit/fiber_olt.html | |
| parent | b2394238aa56b29ede1f7f46c023ac580e32d758 (diff) | |
svc_fiber, #35260
Diffstat (limited to 'httemplate/edit/fiber_olt.html')
| -rw-r--r-- | httemplate/edit/fiber_olt.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/httemplate/edit/fiber_olt.html b/httemplate/edit/fiber_olt.html new file mode 100644 index 000000000..ab7d2f07e --- /dev/null +++ b/httemplate/edit/fiber_olt.html @@ -0,0 +1,24 @@ +<& elements/edit.html, + 'popup' => 1, + 'table' => 'fiber_olt', + 'name_singular' => 'OLT', + 'labels' => \%labels, + 'fields' => \@fields, +&> +<%init> +die "access denied" + unless $FS::CurrentUser::CurrentUser->access_right('Configuration'); + +my @fields = ( + 'oltname', + 'serial', + { field => 'disabled', type => 'checkbox', value => 'Y' } +); + +my %labels = ( + 'oltnum' => '', + 'oltname' => 'Name', + 'serial' => 'Serial', + 'disabled' => 'Disabled', +); +</%init> |
