Koha/koha-tmpl/intranet-tmpl/prog/en/includes/serials-menu.inc
Alexis Ripetti 135ce163c2 Bug 28719: Change somes links in the serials page to avoid them leading to nothing
To test:
1- Search for a serial
2- Pick one
3- Go to 'Serial collection' on the left
4- An issue should be selected if you're expected a new issue
5- delete it using 'Delete selected issues'
6- Confirm deletion
7- If you're supposed to receive more issues the next one should now be there
8- Now edit the serial ('Edit serials')
9- See that the link leads to nothing
10- Apply patch and redo steps 1 to 8
11- See that the link now leads to something

Signed-off-by: kelly <kelly@bywatersolutions.com>

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
2021-08-16 09:56:37 +02:00

52 lines
2.2 KiB
HTML

<div id="navmenu">
<div id="navmenulist">
<h5>Serials</h5>
<ul>
[% IF ( subscriptionid ) %]
<li><a href="/cgi-bin/koha/serials/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 %]&amp;op=new">Create routing list</a></li>
[% END %]
[% END %]
[% END %]
[% END %]
[% 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 %]
[% IF CAN_user_serials_edit_subscription && CAN_user_parameters_manage_additional_fields %]
<li>
<a href="/cgi-bin/koha/admin/additional-fields.pl?tablename=subscription">Manage subscription fields</a>
</li>
[% END %]
</ul>
[% IF ( CAN_user_reports ) %]
<h5>Reports</h5>
<ul>
<li><a href="/cgi-bin/koha/reports/serials_stats.pl">Serials statistics wizard</a></li>
</ul>
[% END %]
</div>
</div>