blob: 01215e83425e949de7d76b7117d4ee06d31d2c91 (
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
33
34
35
36
37
38
39
40
|
<& /elements/header.html, mt($title) &>
<FORM ACTION="sqlradius_usage.html" METHOD="GET">
<TABLE BGCOLOR="#cccccc" CELLSPACING=0
<& /elements/tr-select-agent.html,
'empty_label' => 'all',
&>
% my @exporttypes = map { "'$_'" } qw(sqlradius broadband_sqlradius);
<& /elements/tr-select-table.html,
'label' => 'Export',
'table' => 'part_export',
'name_col' => 'label',
'hashref' => {},
'extra_sql' => ' WHERE exporttype IN('.join(',', @exporttypes).')',
'disable_empty' => 1,
'order_by' => 'ORDER BY exportnum',
&>
<& /elements/tr-input-beginning_ending.html &>
</TABLE>
<BR>
<INPUT TYPE="submit" VALUE="<% mt('Get Report') |h %>">
</FORM>
<& /elements/footer.html &>
<%init>
die "access denied"
unless $FS::CurrentUser::CurrentUser->access_right('Usage: RADIUS sessions');
# yes?
my $title = 'Data Usage Report';
</%init>
|