Lines 661-667
Link Here
|
661 |
<select name="public" id="public"> |
661 |
<select name="public" id="public"> |
662 |
[% IF shelf.is_private %] |
662 |
[% IF shelf.is_private %] |
663 |
<option value="0" selected="selected">Private</option> |
663 |
<option value="0" selected="selected">Private</option> |
664 |
[% ELSE %] |
664 |
[% ELSIF Koha.Preference('OpacAllowPrivateListCreation') %] |
665 |
<option value="0">Private</option> |
665 |
<option value="0">Private</option> |
666 |
[% END %] |
666 |
[% END %] |
667 |
[% IF shelf.is_public %] |
667 |
[% IF shelf.is_public %] |
Lines 751-757
Link Here
|
751 |
<div id="publicshelves" class="tab-pane active"> </div> |
751 |
<div id="publicshelves" class="tab-pane active"> </div> |
752 |
[% END %] |
752 |
[% END %] |
753 |
|
753 |
|
754 |
[% IF Koha.Preference('OpacAllowPrivateListCreation') || Koha.Preference('OpacAllowPublicListCreation') %] |
754 |
[% IF (!public && Koha.Preference('OpacAllowPrivateListCreation')) || (public && Koha.Preference('OpacAllowPublicListCreation')) %] |
755 |
[% IF loggedinusername %] |
755 |
[% IF loggedinusername %] |
756 |
<div id="toolbar" class="toolbar" |
756 |
<div id="toolbar" class="toolbar" |
757 |
><a class="btn btn-link newshelf" href="/cgi-bin/koha/opac-shelves.pl?op=add_form"><i class="fa fa-plus" aria-hidden="true"></i> New list</a></div |
757 |
><a class="btn btn-link newshelf" href="/cgi-bin/koha/opac-shelves.pl?op=add_form"><i class="fa fa-plus" aria-hidden="true"></i> New list</a></div |
758 |
- |
|
|