blob: 78b849c8d43c170ca1ce83322aae9c2882666673 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<% include( 'elements/svc_Common.html',
'name' => 'Phone number',
'table' => 'svc_phone',
'fields' => [qw( countrycode phonenum )], #pin
'labels' => {
'countrycode' => 'Country code',
'phonenum' => 'Phone number',
'pin' => 'PIN',
},
)
%>
<%init>
die "access denied"
unless $FS::CurrentUser::CurrentUser->access_right('Provision customer service'); #something else more specific?
</%init>
|