summaryrefslogtreecommitdiff
path: root/httemplate/elements/tr-search-cust_main.html
diff options
context:
space:
mode:
authorivan <ivan>2010-03-30 02:53:10 +0000
committerivan <ivan>2010-03-30 02:53:10 +0000
commit548bde0209edab634e5b2ea919e4a2096607d2d0 (patch)
tree1282e186a9ea756c7faceadf3eee19b9f698aafb /httemplate/elements/tr-search-cust_main.html
parent2848f5b5675c28051c3ddbc9b9fb302423a43ca4 (diff)
employee (otaker / access_user) commissioning, RT#6991
Diffstat (limited to 'httemplate/elements/tr-search-cust_main.html')
-rw-r--r--httemplate/elements/tr-search-cust_main.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/httemplate/elements/tr-search-cust_main.html b/httemplate/elements/tr-search-cust_main.html
new file mode 100644
index 000000000..9df91a18f
--- /dev/null
+++ b/httemplate/elements/tr-search-cust_main.html
@@ -0,0 +1,15 @@
+<% include('tr-td-label.html', @_ ) %>
+
+ <TD <% $colspan %> <% $cell_style %> ID="<% $opt{input_id} || $opt{id}.'_input0' %>"><% include('search-cust_main.html', @_ ) %></TD>
+
+</TR>
+
+<%init>
+
+my %opt = @_;
+
+my $cell_style = $opt{'cell_style'} ? 'STYLE="'. $opt{'cell_style'}. '"' : '';
+
+my $colspan = $opt{'colspan'} ? 'COLSPAN="'.$opt{'colspan'}.'"' : '';
+
+</%init>