cb1a946693
The full title of a serial is now displayed even if several lines have the same title. Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz> Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>
147 lines
4.2 KiB
Text
147 lines
4.2 KiB
Text
[% INCLUDE 'doc-head-open.inc' %]
|
|
<title>Koha › Serials [% biblionumber %]</title>
|
|
[% INCLUDE 'doc-head-close.inc' %]
|
|
<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.tablesorter.min.js"></script>
|
|
<script type="text/javascript">
|
|
//<![CDATA[
|
|
$(document).ready(function() {
|
|
$("#srlt").tablesorter({
|
|
headers: {
|
|
2: { sorter: false },
|
|
4: { sorter: false },
|
|
5: { sorter: false }
|
|
}
|
|
});
|
|
});
|
|
//]]>
|
|
</script>
|
|
</head>
|
|
<body>
|
|
[% INCLUDE 'header.inc' %]
|
|
[% INCLUDE 'serials-search.inc' %]
|
|
|
|
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › [% IF ( done_searched ) %]<a href="/cgi-bin/koha/serials/serials-home.pl">Serials</a> › Search results[% ELSE %]Serials [% END %] </div>
|
|
|
|
<div id="doc3" class="yui-t2">
|
|
|
|
<div id="bd">
|
|
<div id="yui-main">
|
|
<div class="yui-b">
|
|
[% INCLUDE 'serials-toolbar.inc' %]
|
|
|
|
[% IF ( information ) %]
|
|
Serials updated :
|
|
<table>
|
|
<tr>
|
|
<th>
|
|
Serialseq
|
|
</th>
|
|
<th>
|
|
Status
|
|
</th>
|
|
<th>
|
|
Publisheddate
|
|
</th>
|
|
<th>
|
|
Planneddate
|
|
</th>
|
|
<th>
|
|
Notes
|
|
</th>
|
|
</tr>
|
|
[% FOREACH informatio IN information %]
|
|
<tr>
|
|
<td>
|
|
[% informatio.serialseq %]
|
|
</td>
|
|
<td>
|
|
[% informatio.status %]
|
|
</td>
|
|
<td>
|
|
[% informatio.publisheddate %]
|
|
</td>
|
|
<td>
|
|
[% informatio.planneddate %]
|
|
</td>
|
|
<td>
|
|
[% informatio.notes %]
|
|
</td>
|
|
</tr>
|
|
[% END %]
|
|
</table>
|
|
[% END %]
|
|
[% IF ( done_searched ) %]
|
|
<h2>Serials subscriptions</h2>
|
|
|
|
<table id="srlt">
|
|
<thead>
|
|
<tr>
|
|
<th>ISSN</th>
|
|
<th>Title</th>
|
|
<th> Notes </th>
|
|
<th>
|
|
Library (Callnumber)
|
|
</th>
|
|
[% IF ( routing ) %]
|
|
<th>Routing list</th>
|
|
[% END %]
|
|
<th colspan="2"> </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
[% FOREACH subscription IN subscriptions %]
|
|
[% UNLESS ( loop.odd ) %]
|
|
<tr class="highlight">
|
|
[% ELSE %]
|
|
<tr>
|
|
[% END %]
|
|
<td>
|
|
[% IF ( subscription.issn ) %][% subscription.issn %]
|
|
[% END %]
|
|
</td>
|
|
<td><a href="/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=[% subscription.subscriptionid %]" class="button" title="subscription detail">[% subscription.title |html %]</a>
|
|
</td>
|
|
<td>[% IF ( subscription.notes ) %][% subscription.notes %][% END %]
|
|
[% IF ( subscription.internalnotes ) %]([% subscription.internalnotes %])[% END %]
|
|
</td>
|
|
<td>
|
|
[% IF ( subscription.branchcode ) %][% subscription.branchcode %][% END %]
|
|
[% IF ( subscription.callnumber ) %]([% subscription.callnumber %])[% END %]
|
|
</td>
|
|
[% IF ( routing ) %]
|
|
<td>
|
|
[% IF ( subscription.cannotedit ) %]
|
|
|
|
[% ELSE %]
|
|
[% IF ( subscription.routingedit ) %]
|
|
<a href="/cgi-bin/koha/serials/routing.pl?subscriptionid=[% subscription.subscriptionid %]">Edit</a>
|
|
[% ELSE %]
|
|
<a href="/cgi-bin/koha/serials/routing.pl?subscriptionid=[% subscription.subscriptionid %]&op=new">New</a>
|
|
[% END %]
|
|
[% END %]
|
|
</td>
|
|
[% END %]
|
|
<td><a href="/cgi-bin/koha/serials/serials-collection.pl?subscriptionid=[% subscription.subscriptionid %]">Issue History</a>
|
|
</td>
|
|
<td>
|
|
[% IF ( subscription.cannotedit ) %]
|
|
|
|
[% ELSE %]
|
|
[% IF ( CAN_user_serials_receive_serials ) %]<a href="/cgi-bin/koha/serials/serials-edit.pl?subscriptionid=[% subscription.subscriptionid %]&serstatus=1,3,7">Serial receive</a>[% END %]
|
|
[% END %]
|
|
</td>
|
|
</tr>
|
|
[% END %]
|
|
</tbody>
|
|
</table>
|
|
|
|
[% END %]
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div class="yui-b">
|
|
[% INCLUDE 'serials-menu.inc' %]
|
|
</div>
|
|
</div>
|
|
[% INCLUDE 'intranet-bottom.inc' %]
|