Owen Leonard
b40cc9d7ac
This patch makes minor markup changes to the serials sidebar menu include so that links are displayed in a style consistent with similar menus in other areas of the staff client. This patch contains whitespace changes, so please use the "-w" flag when viewing the diff. To test, apply the patch and go to the Serials module. The links in the sidebar menu should be displayed in the same style as the corresponding menu on the Acquisitions home page. Signed-off-by: Claire Gravely <claire.gravely@bsz-bw.de> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
40 lines
No EOL
1.7 KiB
HTML
40 lines
No EOL
1.7 KiB
HTML
<div id="navmenu">
|
|
<div id="navmenulist">
|
|
[% IF ( subscriptionid ) %]
|
|
<ul>
|
|
<li><a href="serials-collection.pl?subscriptionid=[% subscriptionid | uri %]">Serial collection</a></li>
|
|
[% UNLESS closed %]
|
|
[% IF ( routing && CAN_user_serials_routing ) %]
|
|
[% IF ( hasRouting ) %]
|
|
<li><a href="/cgi-bin/koha/serials/routing.pl?subscriptionid=[% subscriptionid | uri %]">Edit routing list</a></li>
|
|
[% ELSE %]
|
|
<li><a href="/cgi-bin/koha/serials/routing.pl?subscriptionid=[% subscriptionid | uri %]&op=new">Create routing list</a></li>
|
|
[% END %]
|
|
[% END %]
|
|
[% END %]
|
|
</ul>
|
|
[% END %]
|
|
|
|
<ul>
|
|
[% IF ( CAN_user_serials_claim_serials ) %]
|
|
<li><a href="/cgi-bin/koha/serials/claims.pl">Claims</a></li>
|
|
[% END %]
|
|
[% IF ( CAN_user_serials_check_expiration ) %]
|
|
<li><a href="/cgi-bin/koha/serials/checkexpiration.pl">Check expiration</a></li>
|
|
[% END %]
|
|
<li>
|
|
<a href="/cgi-bin/koha/serials/subscription-frequencies.pl">
|
|
Manage frequencies
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="/cgi-bin/koha/serials/subscription-numberpatterns.pl">
|
|
Manage numbering patterns
|
|
</a>
|
|
</li>
|
|
[% IF Koha.Preference('Mana') == 1 %]
|
|
<li><a href="/cgi-bin/koha/serials/serials-search.pl?mana=1">Search on Mana</a></li>
|
|
[% END %]
|
|
</ul>
|
|
</div>
|
|
</div> |