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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/ill/backends/Standard/create.inc (+3 lines)
Lines 112-117 Link Here
112
        <input type="hidden" name="method" value="create" />
112
        <input type="hidden" name="method" value="create" />
113
        <input type="hidden" name="stage" value="form" />
113
        <input type="hidden" name="stage" value="form" />
114
        <input type="hidden" name="backend" value="Standard" />
114
        <input type="hidden" name="backend" value="Standard" />
115
        <input type="hidden" name="op" value="cud-create" />
115
    </form>
116
    </form>
116
    [% BLOCK backend_jsinclude %]
117
    [% BLOCK backend_jsinclude %]
117
        <script>
118
        <script>
Lines 168-173 Link Here
168
    <!-- We need to clarify the borrower that has been requested. -->
169
    <!-- We need to clarify the borrower that has been requested. -->
169
    <h2>Borrower selection</h2>
170
    <h2>Borrower selection</h2>
170
    <form method="POST" action="">
171
    <form method="POST" action="">
172
        [% INCLUDE 'csrf-token.inc' %]
171
        [% FOREACH prop IN whole.value.other.keys %]
173
        [% FOREACH prop IN whole.value.other.keys %]
172
            [% IF prop != 'custom_key' &&  prop != 'custom_value' && prop != 'cardnumber' %]
174
            [% IF prop != 'custom_key' &&  prop != 'custom_value' && prop != 'cardnumber' %]
173
                <input type="hidden" name="[% prop | html %]" value="[% whole.value.other.$prop | html %]" />
175
                <input type="hidden" name="[% prop | html %]" value="[% whole.value.other.$prop | html %]" />
Lines 203-208 Link Here
203
            <input type="submit" value="Select" />
205
            <input type="submit" value="Select" />
204
            <a class="cancel" href="[% parent | url %]">Cancel</a>
206
            <a class="cancel" href="[% parent | url %]">Cancel</a>
205
        </fieldset>
207
        </fieldset>
208
        <input type="hidden" name="op" value="cud-choose-borrower" />
206
    </form>
209
    </form>
207
[% ELSE %]
210
[% ELSE %]
208
    <p>Unknown stage. This should not have happened. </p>
211
    <p>Unknown stage. This should not have happened. </p>
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/ill/backends/Standard/migrate.inc (-1 / +2 lines)
Lines 16-21 Link Here
16
[% IF whole.stage == "form" %]
16
[% IF whole.stage == "form" %]
17
    <h2>Migrating an ILL request</h2>
17
    <h2>Migrating an ILL request</h2>
18
    <form id="standard_migrate_form" method="POST" action="">
18
    <form id="standard_migrate_form" method="POST" action="">
19
        [% INCLUDE 'csrf-token.inc' %]
19
        <fieldset class="rows">
20
        <fieldset class="rows">
20
            <legend>General details</legend>
21
            <legend>General details</legend>
21
            <ol id="general-standard-fields">
22
            <ol id="general-standard-fields">
Lines 104-109 Link Here
104
            <input id="ill-submit" type="submit" value="Migrate" />
105
            <input id="ill-submit" type="submit" value="Migrate" />
105
            <a class="cancel" href="/cgi-bin/koha/ill/ill-requests.pl">Cancel</a>
106
            <a class="cancel" href="/cgi-bin/koha/ill/ill-requests.pl">Cancel</a>
106
        </fieldset>
107
        </fieldset>
108
        <input type="hidden" name="op" value="cud-migrate" />
107
    </form>
109
    </form>
108
    [% BLOCK backend_jsinclude %]
110
    [% BLOCK backend_jsinclude %]
109
        <script>
111
        <script>
110
- 

Return to bug 38340