diff options
author | ivan <ivan> | 2009-01-05 00:26:54 +0000 |
---|---|---|
committer | ivan <ivan> | 2009-01-05 00:26:54 +0000 |
commit | 125fb1a284ae96b46fe433c418aafa87862c4382 (patch) | |
tree | cb9485c9cfd7e685bc63ea40fe214f80c18407b1 /httemplate/elements/tr-select-rate.html | |
parent | c23d6e1673dbec98fe9d778ee55962d2cbd145d5 (diff) |
add rate copying, RT#4431
Diffstat (limited to 'httemplate/elements/tr-select-rate.html')
-rw-r--r-- | httemplate/elements/tr-select-rate.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/httemplate/elements/tr-select-rate.html b/httemplate/elements/tr-select-rate.html new file mode 100644 index 000000000..27f2645af --- /dev/null +++ b/httemplate/elements/tr-select-rate.html @@ -0,0 +1,21 @@ +% unless ( $opt{'js_only'} ) { + + <% include('tr-td-label.html', @_ ) %> + + <TD <% $style %>> +% } + + <% include( '/elements/select-rate.html', %opt ) %> + +% unless ( $opt{'js_only'} ) { + </TD> + </TR> +% } +<%init> + +my( %opt ) = @_; + +my $style = $opt{'cell_style'} ? 'STYLE="'. $opt{'cell_style'}. '"' : ''; + +</%init> + |