Lines 857-862
Link Here
|
857 |
<!-- confirmautoill --> |
857 |
<!-- confirmautoill --> |
858 |
<h1>Confirm automatic request</h1> |
858 |
<h1>Confirm automatic request</h1> |
859 |
<div id="results" class="page-section"> |
859 |
<div id="results" class="page-section"> |
|
|
860 |
<form method="post" id="confirmautoill-goback-form"> |
861 |
[% FOREACH key IN whole.keys %] |
862 |
[% value = whole.$key %] |
863 |
[% IF key != 'method' && key != 'custom_key' && key != 'custom_value' %] |
864 |
<input type="hidden" name="[% key | html %]" value="[% value | html %]"> |
865 |
[% END %] |
866 |
[% END %] |
867 |
[% custom_keys = whole.custom_key.split('\0') %] |
868 |
[% custom_values = whole.custom_value.split('\0') %] |
869 |
[% i = 0 %] |
870 |
[% FOREACH custom_key IN custom_keys %] |
871 |
<input type="hidden" name="custom_key" value="[% custom_key | html %]"> |
872 |
<input type="hidden" name="custom_value" value="[% custom_values.$i | html %]"> |
873 |
[% i = i + 1 %] |
874 |
[% END %] |
875 |
<input type="hidden" name="method" value="create" /> |
876 |
<input type="hidden" name="stage" value="0"> |
877 |
<button type="submit" class="btn btn-link" onclick="this.form.submit()"> |
878 |
<i class="fa fa-arrow-left"></i></span> Return to form |
879 |
</button> |
880 |
</form> |
860 |
<form method="post" id="confirmautoill-form"> |
881 |
<form method="post" id="confirmautoill-form"> |
861 |
[% INCLUDE 'csrf-token.inc' %] |
882 |
[% INCLUDE 'csrf-token.inc' %] |
862 |
<fieldset class="rows"> |
883 |
<fieldset class="rows"> |
863 |
- |
|
|