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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/ill/backends/Standard/create.inc (-2 / +2 lines)
Lines 7-13 Link Here
7
    [% ELSIF whole.status == 'missing_type' %]
7
    [% ELSIF whole.status == 'missing_type' %]
8
        <div class="alert alert-warning"> <strong>Please note:</strong> Type is a mandatory field. </div>
8
        <div class="alert alert-warning"> <strong>Please note:</strong> Type is a mandatory field. </div>
9
    [% ELSIF whole.status == 'missing_unauth_data' %]
9
    [% ELSIF whole.status == 'missing_unauth_data' %]
10
        <div class="alert alert-warning"> <strong>Please note:</strong> Patron data (first name, last name and e-mail) are mandatory fields. </div>
10
        <div class="alert alert-warning"> <strong>Please note:</strong> Patron data (first name, last name and email) are mandatory fields. </div>
11
    [% ELSIF whole.status == 'missing_branch' %]
11
    [% ELSIF whole.status == 'missing_branch' %]
12
        <div class="alert alert-warning"> <strong>Please note:</strong> Library is a mandatory field. </div>
12
        <div class="alert alert-warning"> <strong>Please note:</strong> Library is a mandatory field. </div>
13
    [% ELSIF whole.status == 'invalid_borrower' %]
13
    [% ELSIF whole.status == 'invalid_borrower' %]
Lines 32-38 Link Here
32
                [% IF unauthenticated_ill && !logged_in_user %]
32
                [% IF unauthenticated_ill && !logged_in_user %]
33
                    [% PROCESS ill_text_input_field required = 1 id = 'unauthenticated_first_name' label = t('First name') value = whole.value.other.unauthenticated_first_name %]
33
                    [% PROCESS ill_text_input_field required = 1 id = 'unauthenticated_first_name' label = t('First name') value = whole.value.other.unauthenticated_first_name %]
34
                    [% PROCESS ill_text_input_field required = 1 id = 'unauthenticated_last_name' label = t('Last name') value = whole.value.other.unauthenticated_last_name %]
34
                    [% PROCESS ill_text_input_field required = 1 id = 'unauthenticated_last_name' label = t('Last name') value = whole.value.other.unauthenticated_last_name %]
35
                    [% PROCESS ill_text_input_field required = 1 id = 'unauthenticated_email' label = t('E-mail address') value = whole.value.other.unauthenticated_email %]
35
                    [% PROCESS ill_text_input_field required = 1 id = 'unauthenticated_email' label = t('Email address') value = whole.value.other.unauthenticated_email %]
36
                [% END %]
36
                [% END %]
37
                [% WRAPPER ill_select_field required = 1 id = 'branchcode' label = t('Destination library') %]
37
                [% WRAPPER ill_select_field required = 1 id = 'branchcode' label = t('Destination library') %]
38
                    <option value=""></option>
38
                    <option value=""></option>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-illrequests.tt (-1 / +1 lines)
Lines 178-184 Link Here
178
                                            </li>
178
                                            </li>
179
                                        [% END %]
179
                                        [% END %]
180
                                        <li>
180
                                        <li>
181
                                            <label for="branchcode">Collection library:</label>
181
                                            <label for="branchcode">Pickup library:</label>
182
                                            [% Branches.GetName(request.branchcode) | html %]
182
                                            [% Branches.GetName(request.branchcode) | html %]
183
                                        </li>
183
                                        </li>
184
                                        <li>
184
                                        <li>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-illrequests_unauthenticated.tt (-2 / +1 lines)
Lines 59-65 Link Here
59
                                [% request.backend | html %]
59
                                [% request.backend | html %]
60
                            </li>
60
                            </li>
61
                            <li>
61
                            <li>
62
                                <label for="branchcode">Collection library:</label>
62
                                <label for="branchcode">Pickup library:</label>
63
                                [% Branches.GetName(request.branchcode) | html %]
63
                                [% Branches.GetName(request.branchcode) | html %]
64
                            </li>
64
                            </li>
65
                            <li>
65
                            <li>
66
- 

Return to bug 36197