blob: 9f1042608081906f4aef95de2fb750e4f93a11d6 (
plain)
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
28
29
30
31
32
|
<% include('/elements/header.html', 'Phone number total usage' ) %>
<FORM ACTION="svc_phone.cgi" METHOD="GET">
<INPUT TYPE="hidden" NAME="magic" VALUE="all">
<INPUT TYPE="hidden" NAME="usage_total" VALUE="1">
<TABLE BGCOLOR="#cccccc" CELLSPACING=0>
%# <TR>
%# <TH CLASS="background" COLSPAN=2 ALIGN="left">
%# <FONT SIZE="+1">Search options</FONT>
%# </TH>
%# </TR>
<% include ( '/elements/tr-input-beginning_ending.html', prefix=>'usage' ) %>
</TABLE>
<BR>
<INPUT TYPE="submit" VALUE="Search phone numbers">
</FORM>
<% include('/elements/footer.html') %>
<%init>
#? 'List services' ? something new?
die "access denied"
unless $FS::CurrentUser::CurrentUser->access_right('List rating data');
</%init>
|