Merge branch 'master' of git.freeside.biz:/home/git/freeside
[freeside.git] / httemplate / edit / log_email.html
1 <% include( 'elements/edit.html',
2               'name_singular' => 'log email condition',
3               'table'  => 'log_email',
4               'fields' => [
5                             { 'field' => 'context',
6                               'type' => 'select',
7                               'options' => [ '', @contexts ],
8                               'labels' => { '' => '(all)', map { $_ => $_ } @contexts },
9                               'curr_value' => scalar($cgi->param('context')),
10                             },
11                             { 'field' => 'min_level',
12                               'type'  => 'select',
13                               'options' => [ 0..7 ],
14                               'labels' => { map {$_ => $FS::Log::LEVELS[$_]} 0..7 },
15                               'curr_value' => scalar($cgi->param('min_level')),
16                             },
17                             'to_addr',
18                             { 'field' => 'msgnum',
19                               'type' => 'select-msg_template',
20                               'empty_label' => 'Select template',
21                               'required' => 1,
22                             },
23                           ],
24               'labels' => { 
25                             'context' => 'Context',
26                             'min_level' => 'Min. Level',
27                             'to_addr' => 'To',
28                             'msgnum' => 'Message',
29                           },
30               'viewall_dir' => 'browse',
31               'popup' => $opts{'popup'},
32               'form_init' => $opts{'popup'} ? q(<INPUT TYPE="hidden" NAME="popup" VALUE="1">) : '',
33            )
34 %>
35 <%once>
36 my @contexts = sort FS::log_context->contexts;
37 </%once>
38 <%init>
39
40 my %opts = @_;
41
42 die "access denied"
43   unless $FS::CurrentUser::CurrentUser->access_right([ 'View system logs', 'Configuration' ]);
44
45 </%init>