Fridolin Somers
35d03d6cf6
Some links still had category. I propose we use explicit public=1 and public=0 when links to public/private are side by side. Otherwise whe just use /cgi-bin/koha/opac-shelves.pl?op=list using default value 0. Signed-off-by: David Nind <david@davidnind.com> JK: Adjust commit title Signed-off-by: Joonas Kylmälä <joonas.kylmala@iki.fi> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
144 lines
5.2 KiB
HTML
144 lines
5.2 KiB
HTML
[% USE Koha %]
|
|
[% IF ( ( Koha.Preference( 'opacuserlogin' ) == 1 ) && loggedinusername ) %]
|
|
<div id="menu">
|
|
<ul>
|
|
[% IF ( userview ) %]
|
|
<li class="active">
|
|
[% ELSE %]
|
|
<li>
|
|
[% END %]
|
|
<a href="/cgi-bin/koha/opac-user.pl">your summary</a></li>
|
|
[% IF ( OPACFinesTab ) %]
|
|
[% IF ( accountview ) %]
|
|
<li class="active">
|
|
[% ELSE %]
|
|
<li>
|
|
[% END %]
|
|
<a href="/cgi-bin/koha/opac-account.pl">your charges</a></li>
|
|
[% END %]
|
|
|
|
[% IF ( userupdateview ) %]
|
|
<li class="active">
|
|
[% ELSE %]
|
|
<li>
|
|
[% END %]
|
|
<a href="/cgi-bin/koha/opac-memberentry.pl">your personal details</a></li>
|
|
|
|
[% IF Koha.Preference('GDPR_Policy') # remove when extending %]
|
|
[% IF consentview %]<li class="active">[% ELSE %]<li>[% END %]
|
|
<a href="/cgi-bin/koha/opac-patron-consent.pl">your consents</a>
|
|
</li>
|
|
[% END %]
|
|
|
|
[% IF Koha.Preference( 'TagsEnabled' ) == 1 %]
|
|
[% IF ( tagsview ) %]
|
|
<li class="active">
|
|
[% ELSE %]
|
|
<li>
|
|
[% END %]
|
|
<a href="/cgi-bin/koha/opac-tags.pl?mine=1">your tags</a></li>
|
|
[% END %]
|
|
|
|
[% IF logged_in_user.category.effective_change_password %]
|
|
[% IF ( passwdview ) %]
|
|
<li class="active">
|
|
[% ELSE %]
|
|
<li>
|
|
[% END %]
|
|
<a href="/cgi-bin/koha/opac-passwd.pl">change your password</a></li>
|
|
[% END %]
|
|
|
|
[% IF EnableOpacSearchHistory %]
|
|
[% IF ( searchhistoryview ) %]
|
|
<li class="active">
|
|
[% ELSE %]
|
|
<li>
|
|
[% END %]
|
|
<a href="/cgi-bin/koha/opac-search-history.pl">your search history</a></li>
|
|
[% END %]
|
|
|
|
[% IF ( opacreadinghistory ) %]
|
|
[% IF ( readingrecview ) %]
|
|
<li class="active">
|
|
[% ELSE %]
|
|
<li>
|
|
[% END %]
|
|
<a href="/cgi-bin/koha/opac-readingrecord.pl">your checkout history</a></li>
|
|
[% IF ( OPACPrivacy ) %]
|
|
[% IF ( privacyview ) %]
|
|
<li class="active">
|
|
[% ELSE %]
|
|
<li>
|
|
[% END %]
|
|
<a href="/cgi-bin/koha/opac-privacy.pl">your privacy</a></li>
|
|
[% END %]
|
|
[% END # / opacreadinghistory %]
|
|
|
|
[% IF Koha.Preference('OPACHoldsHistory') == 1 %]
|
|
[% IF ( holdshistoryview ) %]
|
|
<li class="active">
|
|
[% ELSE %]
|
|
<li>
|
|
[% END %]
|
|
<a href="/cgi-bin/koha/opac-holdshistory.pl">your holds history</a></li>
|
|
[% END %]
|
|
|
|
[% IF Koha.Preference( 'suggestion' ) == 1 %]
|
|
[% IF ( suggestionsview ) %]
|
|
<li class="active">
|
|
[% ELSE %]
|
|
<li>
|
|
[% END %]
|
|
<a href="/cgi-bin/koha/opac-suggestions.pl">your purchase suggestions</a></li>
|
|
[% END %]
|
|
|
|
[% IF ( EnhancedMessagingPreferences ) %]
|
|
[% IF Koha.Preference( 'EnhancedMessagingPreferencesOPAC' ) %]
|
|
[% IF ( messagingview ) %]
|
|
<li class="active">
|
|
[% ELSE %]
|
|
<li>
|
|
[% END %]
|
|
<a href="/cgi-bin/koha/opac-messaging.pl">your messaging</a></li>
|
|
[% END %]
|
|
[% END %]
|
|
|
|
[% IF Koha.Preference( 'virtualshelves' ) == 1 %]
|
|
[% IF ( listsview ) %]
|
|
<li class="active">
|
|
[% ELSE %]
|
|
<li>
|
|
[% END %]
|
|
<a href="/cgi-bin/koha/opac-shelves.pl?op=list">your lists</a></li>
|
|
[% END %]
|
|
|
|
[% IF Koha.Preference( 'RoutingSerials' ) && logged_in_user && logged_in_user.get_routing_lists.count %]
|
|
[% IF ( routinglistsview ) %]
|
|
<li class="active">
|
|
[% ELSE %]
|
|
<li>
|
|
[% END %]
|
|
<a href="/cgi-bin/koha/opac-routing-lists.pl">your routing lists</a></li>
|
|
[% END %]
|
|
|
|
[% IF Koha.Preference( 'useDischarge' ) == 1 %]
|
|
[% IF ( dischargeview ) %]
|
|
<li class="active">
|
|
[% ELSE %]
|
|
<li>
|
|
[% END %]
|
|
<a href="/cgi-bin/koha/opac-discharge.pl">ask for a discharge</a></li>
|
|
[% END %]
|
|
|
|
[% IF Koha.Preference( 'ILLModule' ) == 1 %]
|
|
[% IF ( illrequestsview ) %]
|
|
<li class="active">
|
|
[% ELSE %]
|
|
<li>
|
|
[% END %]
|
|
<a href="/cgi-bin/koha/opac-illrequests.pl">your interlibrary loan requests</a></li>
|
|
[% END %]
|
|
|
|
</ul>
|
|
</div>
|
|
[% END %]
|