diff options
author | mark <mark> | 2010-06-16 02:19:13 +0000 |
---|---|---|
committer | mark <mark> | 2010-06-16 02:19:13 +0000 |
commit | e37126c4d8a3eea4d27c855733a77cba026565c4 (patch) | |
tree | 7157385b2dc65a6dd2aa70149711fc29b53315f8 /httemplate/elements/file-upload.html | |
parent | 50de3921a10ae2ecc890c8661aa772dce72f0c53 (diff) |
RT#5683: payment batch upload uses job queue and progressbar
Diffstat (limited to 'httemplate/elements/file-upload.html')
-rw-r--r-- | httemplate/elements/file-upload.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/httemplate/elements/file-upload.html b/httemplate/elements/file-upload.html index 7e2eeefcd..034eaec38 100644 --- a/httemplate/elements/file-upload.html +++ b/httemplate/elements/file-upload.html @@ -54,10 +54,15 @@ <INPUT TYPE="hidden" NAME="upload_fields" VALUE="<% join(',', @field) %>" /> % foreach (@field) { +% if($param{'no_table'}) { + <% shift @label %> <INPUT TYPE="file" NAME="<% $_ %>" /> +% } +% else { <TR> <TH ALIGN="<% $param{'label_align'} || 'right' %>"><% shift @label %></TH> <TD><INPUT TYPE="file" NAME="<% $_ %>" /></TD> </TR> +% } % } <DIV STYLE="display:<% $param{debug} ? 'visible' : 'none' %>"> |