1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<% include( 'elements/svc_Common.html',
'name' => 'Phone number',
'table' => 'svc_phone',
'fields' => [ 'countrycode',
{ field => 'phonenum',
type => 'select-did',
label => 'Phone number',
},
'sip_password',
'pin',
'phone_name',
],
'labels' => {
'countrycode' => 'Country code',
'phonenum' => 'Phone number',
'sip_password' => 'SIP password',
'pin' => 'Voicemail PIN',
'phone_name' => 'Name',
},
)
%>
<%init>
die "access denied"
unless $FS::CurrentUser::CurrentUser->access_right('Provision customer service'); #something else more specific?
</%init>
|