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

(-)a/Koha/ILL/Backend/opac-includes/create.inc (+5 lines)
Lines 31-36 Link Here
31
    <legend>Patron options</legend>
31
    <legend>Patron options</legend>
32
    <ol>
32
    <ol>
33
      <li>
33
      <li>
34
        [% IF unauthenticated_ill && !logged_in_user%]
35
          [% PROCESS ill_text_input_field required = 1 id = 'unauthenticated_first_name' label = t('First name') value = whole.value.other.unauthenticated_first_name %]
36
          [% PROCESS ill_text_input_field required = 1 id = 'unauthenticated_last_name' label = t('Last name') value = whole.value.other.unauthenticated_last_name %]
37
          [% PROCESS ill_text_input_field required = 1 id = 'unauthenticated_email' label = t('E-mail address') value = whole.value.other.unauthenticated_email %]
38
        [% END %]
34
        [% WRAPPER ill_select_field required = 1 id = 'branchcode' label = t('Destination library') %]
39
        [% WRAPPER ill_select_field required = 1 id = 'branchcode' label = t('Destination library') %]
35
          <option value="" />
40
          <option value="" />
36
          [% FOREACH branch IN branches %]
41
          [% FOREACH branch IN branches %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-illrequests.tt (+5 lines)
Lines 65-70 Link Here
65
                        [% INCLUDE 'navigation.inc' IsPatronPage=1 %]
65
                        [% INCLUDE 'navigation.inc' IsPatronPage=1 %]
66
                    </div>
66
                    </div>
67
                </div>
67
                </div>
68
            [% ELSIF (!logged_in_user) %]
69
                <div class="col-lg-2">
70
                    <div id="navigation">
71
                    </div>
72
                </div>
68
            [% END %]
73
            [% END %]
69
74
70
            [% IF ( OpacNav||loggedinusername ) %]
75
            [% IF ( OpacNav||loggedinusername ) %]
(-)a/opac/opac-illrequests.pl (-1 / +1 lines)
Lines 195-200 if ( $op eq 'list' ) { Link Here
195
}
195
}
196
196
197
$template->param(
197
$template->param(
198
    unauthenticated_ill          => C4::Context->preference('ILLOpacUnauthenticatedRequest'),
198
    can_patron_place_ill_in_opac => $can_patron_place_ill_in_opac,
199
    can_patron_place_ill_in_opac => $can_patron_place_ill_in_opac,
199
    message                      => $params->{message},
200
    message                      => $params->{message},
200
    illrequestsview              => 1,
201
    illrequestsview              => 1,
201
- 

Return to bug 36197