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

(-)a/Koha/ILL/Backend/opac-includes/create.inc (+5 lines)
Lines 36-41 Link Here
36
    <fieldset class="rows">
36
    <fieldset class="rows">
37
    <legend>Patron options</legend>
37
    <legend>Patron options</legend>
38
    <ol>
38
    <ol>
39
        [% IF unauthenticated_ill && !logged_in_user%]
40
          [% PROCESS ill_text_input_field required = 1 id = 'unauthenticated_first_name' label = t('First name') value = whole.value.other.unauthenticated_first_name %]
41
          [% PROCESS ill_text_input_field required = 1 id = 'unauthenticated_last_name' label = t('Last name') value = whole.value.other.unauthenticated_last_name %]
42
          [% PROCESS ill_text_input_field required = 1 id = 'unauthenticated_email' label = t('E-mail address') value = whole.value.other.unauthenticated_email %]
43
        [% END %]
39
        [% WRAPPER ill_select_field required = 1 id = 'branchcode' label = t('Destination library') %]
44
        [% WRAPPER ill_select_field required = 1 id = 'branchcode' label = t('Destination library') %]
40
          <option value=""></option>
45
          <option value=""></option>
41
          [% FOREACH branch IN branches %]
46
          [% FOREACH branch IN branches %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-illrequests.tt (+4 lines)
Lines 64-69 Link Here
64
                <div class="col-lg-2">
64
                <div class="col-lg-2">
65
                    <div id="navigation"> [% INCLUDE 'navigation.inc' IsPatronPage=1 %] </div>
65
                    <div id="navigation"> [% INCLUDE 'navigation.inc' IsPatronPage=1 %] </div>
66
                </div>
66
                </div>
67
            [% ELSIF (!logged_in_user) %]
68
                <div class="col-lg-2">
69
                    <div id="navigation"> </div>
70
                </div>
67
            [% END %]
71
            [% END %]
68
72
69
            [% SET column_class = "col order-first order-md-first order-lg-2" %]
73
            [% SET column_class = "col order-first order-md-first order-lg-2" %]
(-)a/opac/opac-illrequests.pl (-1 / +1 lines)
Lines 183-188 if ( $op eq 'list' ) { Link Here
183
}
183
}
184
184
185
$template->param(
185
$template->param(
186
    unauthenticated_ill          => C4::Context->preference('ILLOpacUnauthenticatedRequest'),
186
    can_patron_place_ill_in_opac => $can_patron_place_ill_in_opac,
187
    can_patron_place_ill_in_opac => $can_patron_place_ill_in_opac,
187
    message                      => $params->{message},
188
    message                      => $params->{message},
188
    illrequestsview              => 1,
189
    illrequestsview              => 1,
189
- 

Return to bug 36197