summaryrefslogtreecommitdiff
path: root/httemplate/browse/conferencing_type.html
blob: 176b6a278fafdaa31c6a2acf86a4684f760ddba5 (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
<& elements/browse.html,
     'title'              => 'Conferencing types',
     'html_init'          => $html_init,
     'name_singular'      => 'type',
     'disableable'        => 1,
     'disabled_statuspos' => 1,
     'query'              => { 'table'     => 'conferencing_type',
                               'hashref'   => {},
                               'order_by' => 'ORDER BY typeid',
                             },
     'count_query'        => $count_query,
     'header'             => $header,
     'fields'             => $fields,
     'links'              => $links,
&>
<%init>

die "access denied"
  unless $FS::CurrentUser::CurrentUser->access_right('Configuration');

my $html_init =
  qq!<A HREF="${p}edit/conferencing_type.html"><I>Add a conferencing type</I></A><BR><BR>!;

my $count_query = 'SELECT COUNT(*) FROM conferencing_type';

my $link = [ $p.'edit/conferencing_type.html?', 'conftypenum' ];

my $header = [ 'ID', 'Type' ];
my $fields = [ 'typeid', 'typename' ];
my $links  = [ $link, $link ];

</%init>