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

(-)a/Koha/ILL/Backend/opac-includes/create.inc (+5 lines)
Lines 40-45 Link Here
40
    <fieldset class="rows">
40
    <fieldset class="rows">
41
    <legend>Patron options</legend>
41
    <legend>Patron options</legend>
42
    <ol>
42
    <ol>
43
        [% IF unauthenticated_ill && !logged_in_user%]
44
          [% PROCESS ill_text_input_field required = 1 id = 'unauthenticated_first_name' label = t('First name') value = whole.value.other.unauthenticated_first_name %]
45
          [% PROCESS ill_text_input_field required = 1 id = 'unauthenticated_last_name' label = t('Last name') value = whole.value.other.unauthenticated_last_name %]
46
          [% PROCESS ill_text_input_field required = 1 id = 'unauthenticated_email' label = t('E-mail address') value = whole.value.other.unauthenticated_email %]
47
        [% END %]
43
        [% WRAPPER ill_select_field required = 1 id = 'branchcode' label = t('Destination library') %]
48
        [% WRAPPER ill_select_field required = 1 id = 'branchcode' label = t('Destination library') %]
44
          <option value=""></option>
49
          <option value=""></option>
45
          [% FOREACH branch IN branches %]
50
          [% 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 196-201 if ( $op eq 'list' ) { Link Here
196
}
196
}
197
197
198
$template->param(
198
$template->param(
199
    unauthenticated_ill          => C4::Context->preference('ILLOpacUnauthenticatedRequest'),
199
    can_patron_place_ill_in_opac => $can_patron_place_ill_in_opac,
200
    can_patron_place_ill_in_opac => $can_patron_place_ill_in_opac,
200
    message                      => $params->{message},
201
    message                      => $params->{message},
201
    illrequestsview              => 1,
202
    illrequestsview              => 1,
202
- 

Return to bug 36197