diff options
author | Ivan Kohler <ivan@freeside.biz> | 2013-04-18 20:39:16 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2013-04-18 20:39:16 -0700 |
commit | e385ba02fcd5897a1ed19d9fd23a8471ef27a134 (patch) | |
tree | a93546629507c8f8d2c0664e7e747c41a105e9eb /httemplate/elements/tr-search-svc_broadband.html | |
parent | 54156948ccda87655f9f4bb26a2747ab49b616ce (diff) |
add fields to svc_broadband, RT#
Diffstat (limited to 'httemplate/elements/tr-search-svc_broadband.html')
-rw-r--r-- | httemplate/elements/tr-search-svc_broadband.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/httemplate/elements/tr-search-svc_broadband.html b/httemplate/elements/tr-search-svc_broadband.html new file mode 100644 index 000000000..cd7c11500 --- /dev/null +++ b/httemplate/elements/tr-search-svc_broadband.html @@ -0,0 +1,15 @@ +<& tr-td-label.html, @_ &> + + <TD <% $colspan %> <% $cell_style %> ID="<% $opt{input_id} || $opt{id}.'_input0' %>"><& search-svc_broadband.html, @_ &></TD> + +</TR> + +<%init> + +my %opt = @_; + +my $cell_style = $opt{'cell_style'} ? 'STYLE="'. $opt{'cell_style'}. '"' : ''; + +my $colspan = $opt{'colspan'} ? 'COLSPAN="'.$opt{'colspan'}.'"' : ''; + +</%init> |