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