diff options
author | Ivan Kohler <ivan@freeside.biz> | 2014-04-09 13:25:58 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2014-04-09 13:25:58 -0700 |
commit | f926513f6aa8cc228f62f8b1f582bb823c021cdc (patch) | |
tree | 9d7d1225112db4e3767899b52fbb1ef772bd1e28 /httemplate | |
parent | c6c8d0ffa48f07b5c1b7df7981bc28322d47cf70 (diff) |
installers, RT#16584
Diffstat (limited to 'httemplate')
-rw-r--r-- | httemplate/browse/pkg_category.html | 6 | ||||
-rw-r--r-- | httemplate/browse/pkg_class.html | 2 | ||||
-rw-r--r-- | httemplate/edit/elements/edit.html | 3 | ||||
-rw-r--r-- | httemplate/edit/pkg_category.html | 9 |
4 files changed, 14 insertions, 6 deletions
diff --git a/httemplate/browse/pkg_category.html b/httemplate/browse/pkg_category.html index 2c181a3db..67ee03501 100644 --- a/httemplate/browse/pkg_category.html +++ b/httemplate/browse/pkg_category.html @@ -9,9 +9,9 @@ 'order_by' => 'ORDER BY categorynum', }, 'count_query' => $count_query, - 'header' => [ '#', 'Category', 'Weight', 'Condense' ], - 'fields' => [ 'categorynum', 'categoryname', 'weight', 'condense' ], - 'links' => [ $link, $link, $link, $link ], + 'header' => [ 'Category', 'Weight', 'Ticketing', 'Condense' ], + 'fields' => [ 'categoryname', 'weight', 'ticketing_queue', 'condense' ], + 'links' => [ $link, '', '', '', ] ) %> diff --git a/httemplate/browse/pkg_class.html b/httemplate/browse/pkg_class.html index f3e236496..2aa2857a5 100644 --- a/httemplate/browse/pkg_class.html +++ b/httemplate/browse/pkg_class.html @@ -48,7 +48,7 @@ $sth->execute if ($sth->fetchrow_arrayref->[0]) { push @$header, 'Category'; push @$fields, 'categoryname'; - push @$links, $link; + push @$links, [ $p.'edit/pkg_category.html?', 'categorynum' ] } </%init> diff --git a/httemplate/edit/elements/edit.html b/httemplate/edit/elements/edit.html index f00345434..acfa8c597 100644 --- a/httemplate/edit/elements/edit.html +++ b/httemplate/edit/elements/edit.html @@ -327,6 +327,9 @@ Example: % #umm. for select-agent_types at least % 'label_callback'=> $f->{'label_callback'}, % +% #for select-ticketing_queueid at least +% 'post_options' => $f->{'post_options'}, +% % #any? % 'colspan' => $f->{'colspan'}, % 'required' => $f->{'required'}, diff --git a/httemplate/edit/pkg_category.html b/httemplate/edit/pkg_category.html index 3be74c7f5..0034dd894 100644 --- a/httemplate/edit/pkg_category.html +++ b/httemplate/edit/pkg_category.html @@ -4,13 +4,18 @@ 'fields' => [ 'categoryname', 'weight', - { field=>'condense', type=>'checkbox', value=>'Y', }, - { field=>'disabled', type=>'checkbox', value=>'Y', }, + { field=>'ticketing_queueid', + type =>'select-ticketing_queueid', + post_options => [ -1 => 'Agent-specific queue' ], + }, + { field=>'condense', type=>'checkbox', value=>'Y' }, + { field=>'disabled', type=>'checkbox', value=>'Y' }, ], 'labels' => { 'categorynum' => 'Category number', 'categoryname' => 'Category name', 'weight' => 'Weight', + 'ticketing_queueid' => 'Ticketing queue', 'condense' => 'Collapse identical items to one', 'disabled' => 'Disable category', }, |