Lines 248-254
Link Here
|
248 |
|
248 |
|
249 |
[% IF can_manage_shelf %] |
249 |
[% IF can_manage_shelf %] |
250 |
<span class="sep">|</span> |
250 |
<span class="sep">|</span> |
251 |
<form method="get" action="/cgi-bin/koha/opac-shelves.pl" class="d-inline"> |
251 |
<form method="post" action="/cgi-bin/koha/opac-shelves.pl" class="d-inline"> |
252 |
<input type="hidden" name="op" value="edit_form" /> |
252 |
<input type="hidden" name="op" value="edit_form" /> |
253 |
<input type="hidden" name="referer" value="view" /> |
253 |
<input type="hidden" name="referer" value="view" /> |
254 |
<input type='hidden' name='public' value='[% shelf.public | html %]' /> |
254 |
<input type='hidden' name='public' value='[% shelf.public | html %]' /> |
Lines 546-552
Link Here
|
546 |
<a class="btn btn-link newshelf" href="/cgi-bin/koha/opac-shelves.pl?op=add_form"><i class="fa fa-fw fa-plus" aria-hidden="true"></i> New list</a> |
546 |
<a class="btn btn-link newshelf" href="/cgi-bin/koha/opac-shelves.pl?op=add_form"><i class="fa fa-fw fa-plus" aria-hidden="true"></i> New list</a> |
547 |
[% IF can_manage_shelf %] |
547 |
[% IF can_manage_shelf %] |
548 |
<span class="sep">|</span> |
548 |
<span class="sep">|</span> |
549 |
<form method="get" action="/cgi-bin/koha/opac-shelves.pl" class="d-inline"> |
549 |
<form method="post" action="/cgi-bin/koha/opac-shelves.pl" class="d-inline"> |
550 |
<input type="hidden" name="op" value="edit_form" /> |
550 |
<input type="hidden" name="op" value="edit_form" /> |
551 |
<input type="hidden" name="referer" value="view" /> |
551 |
<input type="hidden" name="referer" value="view" /> |
552 |
<input type="hidden" name="public" value="[% shelf.public | html %]" /> |
552 |
<input type="hidden" name="public" value="[% shelf.public | html %]" /> |
Lines 763-769
Link Here
|
763 |
<td>[% s.lastmodified | $KohaDates %]</td> |
763 |
<td>[% s.lastmodified | $KohaDates %]</td> |
764 |
<td> |
764 |
<td> |
765 |
[% IF s.can_be_managed( loggedinusernumber ) %] |
765 |
[% IF s.can_be_managed( loggedinusernumber ) %] |
766 |
<form action="/cgi-bin/koha/opac-shelves.pl" method="get" class="d-inline"> |
766 |
<form action="/cgi-bin/koha/opac-shelves.pl" method="post" class="d-inline"> |
767 |
<input type="hidden" name="shelfnumber" value="[% s.shelfnumber | html %]" /> |
767 |
<input type="hidden" name="shelfnumber" value="[% s.shelfnumber | html %]" /> |
768 |
<input type="hidden" name="public" value="[% s.public | html %]" /> |
768 |
<input type="hidden" name="public" value="[% s.public | html %]" /> |
769 |
<input type="hidden" name="op" value="edit_form" /> |
769 |
<input type="hidden" name="op" value="edit_form" /> |
Lines 778-784
Link Here
|
778 |
<a href="/cgi-bin/koha/opac-shareshelf.pl?op=invite&shelfnumber=[% s.shelfnumber | uri %]" class="sharelist btn btn-link"><i class="fa fa-share" aria-hidden="true"></i> Share</a> |
778 |
<a href="/cgi-bin/koha/opac-shareshelf.pl?op=invite&shelfnumber=[% s.shelfnumber | uri %]" class="sharelist btn btn-link"><i class="fa fa-share" aria-hidden="true"></i> Share</a> |
779 |
[% END %] |
779 |
[% END %] |
780 |
[% IF s.is_shared AND s.can_be_managed( loggedinusernumber ) %] |
780 |
[% IF s.is_shared AND s.can_be_managed( loggedinusernumber ) %] |
781 |
<form action="/cgi-bin/koha/opac-shelves.pl" method="get" class="d-inline"> |
781 |
<form action="/cgi-bin/koha/opac-shelves.pl" method="post" class="d-inline"> |
782 |
<input type="hidden" name="shelfnumber" value="[% s.shelfnumber | html %]" /> |
782 |
<input type="hidden" name="shelfnumber" value="[% s.shelfnumber | html %]" /> |
783 |
<input type="hidden" name="public" value="0" /> |
783 |
<input type="hidden" name="public" value="0" /> |
784 |
<input type="hidden" name="op" value="transfer" /> |
784 |
<input type="hidden" name="op" value="transfer" /> |
785 |
- |
|
|