diff options
author | mark <mark> | 2010-06-16 02:19:25 +0000 |
---|---|---|
committer | mark <mark> | 2010-06-16 02:19:25 +0000 |
commit | a6211a623e3f7d8f6af8363693e722fd63e8459e (patch) | |
tree | 717f5f09c8a285baa53547c892c86293167b2581 /httemplate/elements | |
parent | e0f8179a112d12a66280351fd12232015c4c53c9 (diff) |
RT#5683: payment batch upload uses job queue and progressbar
Diffstat (limited to 'httemplate/elements')
-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' %>"> |