diff options
| author | Mark Wells <mark@freeside.biz> | 2015-09-30 22:49:38 -0700 |
|---|---|---|
| committer | Mark Wells <mark@freeside.biz> | 2015-09-30 22:50:00 -0700 |
| commit | f485dcdf05ee107645299197a9ab9d9dd3f22be3 (patch) | |
| tree | 541d64f13a8ebd4a2d448295a68182a58de63fb2 /httemplate/edit/process/elements/process.html | |
| parent | 9e99a610a2c69db3ab9f42728ab6dbf492a5496a (diff) | |
graphical selection of deployment zones and automatic block lookup, #30260
Diffstat (limited to 'httemplate/edit/process/elements/process.html')
| -rw-r--r-- | httemplate/edit/process/elements/process.html | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/httemplate/edit/process/elements/process.html b/httemplate/edit/process/elements/process.html index 69bd605f6..a76f4befb 100644 --- a/httemplate/edit/process/elements/process.html +++ b/httemplate/edit/process/elements/process.html @@ -160,7 +160,26 @@ process(); </script> <& /elements/footer.html &> -%} elsif ( $opt{'popup_reload'} ) { +% } elsif ( $opt{'progress_init'} ) { +% # some false laziness with the above +% my ($form_name, $job_fields) = @{ $opt{'progress_init'} }; +<form name="<% $form_name %>"> +% foreach my $field (@$job_fields) { + <input type="hidden" name="<% $field %>" value="<% $cgi->param($field) |h %>"> +% } +<& /elements/progress-init.html, + @{ $opt{'progress_init'} } +&> +<input type="submit" style="display:none"> +</form> +<script> +<&| /elements/onload.js &> +process(); +</&> +</script> +<& /elements/footer.html &> + +% } elsif ( $opt{'popup_reload'} ) { <% include('/elements/header-popup.html', $opt{'popup_reload'} ) %> |
