diff options
Diffstat (limited to 'httemplate/elements/tr-input-text.html')
-rw-r--r-- | httemplate/elements/tr-input-text.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/httemplate/elements/tr-input-text.html b/httemplate/elements/tr-input-text.html new file mode 100644 index 000000000..14f1425df --- /dev/null +++ b/httemplate/elements/tr-input-text.html @@ -0,0 +1,13 @@ +<% include('tr-td-label.html', @_ ) %> + + <TD <% $cell_style %>><% include('input-text.html', @_ ) %></TD> + +</TR> + +<%init> + +my %opt = @_; + +my $cell_style = $opt{'cell_style'} ? 'STYLE="'. $opt{'cell_style'}. '"' : ''; + +</%init> |