summaryrefslogtreecommitdiff
path: root/httemplate/search/report_sqlradius_usage.html
blob: e818fb57de9ce9c952f4054fe5a1b4a1c4b4a10d (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
41
42
43
44
45
<& /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',
&>

%#more future-proof to actually ask all exports if they ->can('usage_sessions')
% my @exporttypes = qw( sqlradius sqlradius_withdomain broadband_sqlradius
%                       phone_sqlradius radiator
%                     );
<& /elements/tr-select-table.html,
  'label'         => 'Export',
  'table'         => 'part_export',
  'name_col'      => 'label',
  'hashref'       => {},
  'extra_sql'     => ' WHERE exporttype IN ( '.
                                            join(',', map "'$_'", @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>