e2ac56363470148b71d4b883c5590470a62a4a76
[freeside.git] / httemplate / browse / radius_group.html
1 <& elements/browse.html,
2                  'title'       => 'RADIUS Groups',
3                  'name'        => 'RADIUS Groups',
4                  'menubar'     => [ 'Add a RADIUS Group' => $p.'edit/radius_group.html', ],
5                  'query'       => { 'table' => 'radius_group' },
6                  'count_query' => 'SELECT COUNT(*) FROM radius_group',
7                  'header'      => [ '#', 'RADIUS Group', 'Description' ],
8                  'fields'      => [ 'groupnum',
9                                     'groupname',
10                                     'description',
11                                   ],
12                  'links'       => [ [ $p.'edit/radius_group.html?', 'groupnum' ],
13                                     '',
14                                     '',
15                                   ],
16 &>
17 <%init>
18
19 my $curuser = $FS::CurrentUser::CurrentUser;
20
21 die "access denied"
22   unless $curuser->access_right('Configuration');
23
24 </%init>