diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2016-08-06 00:10:39 -0500 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2016-08-06 00:10:39 -0500 |
commit | 5dcad472a299af94b9cc6b2ad26f0d610ff66b36 (patch) | |
tree | 06f54471d7bd04759cf2ebac8a023730edf8d4bf /httemplate | |
parent | 96ac8187cdd42d1022944c6a41136378f841f064 (diff) |
RT#71696: OFM Request for additional action on Billing Events
Diffstat (limited to 'httemplate')
-rw-r--r-- | httemplate/elements/select-rt-queue.html | 2 | ||||
-rw-r--r-- | httemplate/elements/tr-select-rt-queue.html | 7 |
2 files changed, 8 insertions, 1 deletions
diff --git a/httemplate/elements/select-rt-queue.html b/httemplate/elements/select-rt-queue.html index 4ae8bc942..289336516 100644 --- a/httemplate/elements/select-rt-queue.html +++ b/httemplate/elements/select-rt-queue.html @@ -1,4 +1,4 @@ -<SELECT NAME="<% $opt{'name'} %>"<% $opt{'multiple'} ? ' MULTIPLE' : '' %>> +<SELECT NAME="<% $opt{'name'} || $opt{'field'} %>"<% $opt{'multiple'} ? ' MULTIPLE' : '' %>> % while ( @fields ) { % my $value = shift @fields; % my $label = shift @fields; diff --git a/httemplate/elements/tr-select-rt-queue.html b/httemplate/elements/tr-select-rt-queue.html new file mode 100644 index 000000000..ac3689b1c --- /dev/null +++ b/httemplate/elements/tr-select-rt-queue.html @@ -0,0 +1,7 @@ + +<& 'tr-td-label.html', @_ &> +<TD> +<& 'select-rt-queue.html', @_ &> +</TD> +</TR> + |