View | Details | Raw Unified | Return to bug 38669
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt (-1 / +21 lines)
Lines 940-945 Link Here
940
                    <!-- confirmautoill -->
940
                    <!-- confirmautoill -->
941
                    <h1>Confirm automatic request</h1>
941
                    <h1>Confirm automatic request</h1>
942
                    <div id="results" class="page-section">
942
                    <div id="results" class="page-section">
943
                        <form method="post" id="confirmautoill-goback-form">
944
                                [% FOREACH key IN whole.keys %]
945
                                    [% value = whole.$key %]
946
                                    [% IF key != 'method' && key != 'custom_key' && key != 'custom_value' %]
947
                                        <input type="hidden" name="[% key | html %]" value="[% value | html %]">
948
                                    [% END %]
949
                                [% END %]
950
                                [% custom_keys = whole.custom_key.split('\0') %]
951
                                [% custom_values = whole.custom_value.split('\0') %]
952
                                [% i = 0 %]
953
                                [% FOREACH custom_key IN custom_keys %]
954
                                    <input type="hidden" name="custom_key" value="[% custom_key | html %]">
955
                                    <input type="hidden" name="custom_value" value="[% custom_values.$i | html %]">
956
                                    [% i = i + 1 %]
957
                                [% END %]
958
                                <input type="hidden" name="method" value="create" />
959
                                <input type="hidden" name="stage" value="0">
960
                                <button type="submit" class="btn btn-link" onclick="this.form.submit()">
961
                                    <i class="fa fa-arrow-left"></i></span> Return to form
962
                                </button>
963
                        </form>
943
                        <form method="post" id="confirmautoill-form">
964
                        <form method="post" id="confirmautoill-form">
944
                            <fieldset class="rows">
965
                            <fieldset class="rows">
945
                                <h3>Confirm backend:</h3>
966
                                <h3>Confirm backend:</h3>
946
- 

Return to bug 38669