Bug 33265: Clean up serial links on serial edit page
To test: 1. Reviece a serial 2. Notice the unstyled links: * Serial collection #1 * Subscription #1 * Show biblio 3. Apply pacth 4. The links should now be styled. Signed-off-by: Andrew Auld <andrew.auld@ptfs-europe.com> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
parent
7574626f2c
commit
c5f3312eaf
2 changed files with 14 additions and 10 deletions
|
@ -311,7 +311,7 @@ aside {
|
|||
}
|
||||
}
|
||||
|
||||
#menu, #navmenulist {
|
||||
#menu, #navmenulist, #serialmenu {
|
||||
background-color: #e6e6e6;
|
||||
display: block;
|
||||
padding: 1em 0 1em 0;
|
||||
|
|
|
@ -465,17 +465,21 @@ $(document).ready(function() {
|
|||
<div class="col-sm-2 col-sm-pull-10">
|
||||
<aside>
|
||||
[% INCLUDE 'serials-menu.inc' %]
|
||||
<ul>
|
||||
[% FOREACH subscription IN subscriptions %]
|
||||
<li><a href="serials-collection.pl?subscriptionid=[% subscription.subscriptionid | uri %]" title="serial collection for [% subscription.bibliotitle | uri %]">Serial collection #[% subscription.subscriptionid | html %]</a></li>
|
||||
<li><a href="subscription-detail.pl?subscriptionid=[% subscription.subscriptionid | uri %]" title="detail of the subscription">Subscription #[% subscription.subscriptionid | html %]</a></li>
|
||||
[% IF ( subscription.abouttoexpire ) %]
|
||||
[% UNLESS subscription.closed %]
|
||||
<li><a href="#" onclick="javascript:popup([% subscription.subscriptionid | html %])">Renew #[% subscription.subscriptionid | html %]</a></li>
|
||||
<div id="serialmenu">
|
||||
<h5>Serial links</h5>
|
||||
<ul>
|
||||
[% FOREACH subscription IN subscriptions %]
|
||||
<li><a href="serials-collection.pl?subscriptionid=[% subscription.subscriptionid | uri %]" title="Serial collection for [% subscription.subscriptionid | html %]">Serial collection #[% subscription.subscriptionid | html %]</a></li>
|
||||
<li><a href="subscription-detail.pl?subscriptionid=[% subscription.subscriptionid | uri %]" title="Detail of the subscription">Subscription #[% subscription.subscriptionid | html %]</a></li>
|
||||
[% IF ( subscription.abouttoexpire ) %]
|
||||
[% UNLESS subscription.closed %]
|
||||
<li><a href="#" onclick="javascript:popup([% subscription.subscriptionid | html %])">Renew #[% subscription.subscriptionid | html %]</a></li>
|
||||
[% END %]
|
||||
[% END %]
|
||||
[% END %]
|
||||
[% END %]
|
||||
<li><a href="[% PROCESS biblio_a_href biblionumber => biblionumber %]" title="go to [% bibliotitle | html %]">Show biblio</a></li></ul>
|
||||
<li><a href="[% PROCESS biblio_a_href biblionumber => biblionumber %]" title="Go to [% bibliotitle | html %]">Show bibliographic record</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</aside>
|
||||
</div> <!-- /.col-sm-2.col-sm-pull-10 -->
|
||||
</div> <!-- /.row -->
|
||||
|
|
Loading…
Reference in a new issue