diff options
author | jeff <jeff> | 2008-05-09 21:51:59 +0000 |
---|---|---|
committer | jeff <jeff> | 2008-05-09 21:51:59 +0000 |
commit | 96b10cf810e5766ff0b27aff01af235f99668b9b (patch) | |
tree | f64da1db262ef72de48698bc5a6bad6f0ff85595 /httemplate/elements | |
parent | d14d966d6932a7dcbe34ab684342a5892609a574 (diff) |
re-drag address and router even farther into the century
Diffstat (limited to 'httemplate/elements')
-rw-r--r-- | httemplate/elements/tr-select-table.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/httemplate/elements/tr-select-table.html b/httemplate/elements/tr-select-table.html new file mode 100644 index 000000000..f38176274 --- /dev/null +++ b/httemplate/elements/tr-select-table.html @@ -0,0 +1,15 @@ +<% include('tr-td-label.html', @_ ) %> + + <TD <% $style %>> + + <% include( '/elements/select-table.html', %opt ) %> + + </TD> + </TR> +<%init> + +my( %opt ) = @_; + +my $style = $opt{'cell_style'} ? 'STYLE="'. $opt{'cell_style'}. '"' : ''; + +</%init> |