b3feb54ee0
Signed-off-by: Henri-Damien LAURENT <henridamien.laurent@biblibre.com> Conflicts: installer/data/mysql/en/mandatory/userpermissions.sql installer/data/mysql/fr-FR/1-Obligatoire/userpermissions.sql installer/data/mysql/updatedatabase30.pl koha-tmpl/intranet-tmpl/prog/en/includes/header.inc koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-home.tmpl serials/member-search.pl serials/serials-edit.pl serials/subscription-add.pl serials/subscription-bib-search.pl serials/subscription-detail.pl Signed-off-by: Galen Charlton <gmcharlt@gmail.com>
149 lines
4.7 KiB
Cheetah
149 lines
4.7 KiB
Cheetah
<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
|
|
<title>Koha › Serials <!-- TMPL_VAR name="biblionumber" --></title>
|
|
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
|
|
<script type="text/javascript" src="<!-- TMPL_VAR name="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>
|
|
<!-- TMPL_INCLUDE NAME="header.inc" -->
|
|
<!-- TMPL_INCLUDE NAME="serials-search.inc" -->
|
|
|
|
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <!-- TMPL_IF NAME="done_searched"--><a href="/cgi-bin/koha/serials/serials-home.pl">Serials</a> › Search results<!-- TMPL_ELSE -->Serials <!-- /TMPL_IF --> </div>
|
|
|
|
<div id="doc3" class="yui-t2">
|
|
|
|
<div id="bd">
|
|
<div id="yui-main">
|
|
<div class="yui-b">
|
|
<!-- TMPL_INCLUDE NAME="serials-toolbar.inc" -->
|
|
|
|
<!--TMPL_IF Name="information"-->
|
|
Serials updated :
|
|
<table>
|
|
<tr>
|
|
<th>
|
|
Serialseq
|
|
</th>
|
|
<th>
|
|
Status
|
|
</th>
|
|
<th>
|
|
Publisheddate
|
|
</th>
|
|
<th>
|
|
Planneddate
|
|
</th>
|
|
<th>
|
|
Notes
|
|
</th>
|
|
</tr>
|
|
<!--TMPL_LOOP Name="information"-->
|
|
<tr>
|
|
<td>
|
|
<!--TMPL_VAR Name="serialseq"-->
|
|
</td>
|
|
<td>
|
|
<!--TMPL_VAR Name="status"-->
|
|
</td>
|
|
<td>
|
|
<!--TMPL_VAR Name="publisheddate"-->
|
|
</td>
|
|
<td>
|
|
<!--TMPL_VAR Name="planneddate"-->
|
|
</td>
|
|
<td>
|
|
<!--TMPL_VAR Name="notes"-->
|
|
</td>
|
|
</tr>
|
|
<!--/TMPL_LOOP -->
|
|
</table>
|
|
<!--/TMPL_IF-->
|
|
<!-- TMPL_IF NAME="done_searched"-->
|
|
<h2>Serials subscriptions</h2>
|
|
|
|
<table id="srlt">
|
|
<thead>
|
|
<tr>
|
|
<th>ISSN</th>
|
|
<th>Title</th>
|
|
<th> Notes </th>
|
|
<th>
|
|
Library (Callnumber)
|
|
</th>
|
|
<!-- TMPL_IF NAME="routing" -->
|
|
<th>Routing list</th>
|
|
<!-- /TMPL_IF -->
|
|
<th colspan="2"> </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<!-- TMPL_LOOP name="subscriptions" -->
|
|
<!-- TMPL_UNLESS name="__odd__" -->
|
|
<tr class="highlight">
|
|
<!-- TMPL_ELSE -->
|
|
<tr>
|
|
<!-- /TMPL_UNLESS -->
|
|
<td>
|
|
<!-- TMPL_IF name="issn" --><!-- TMPL_VAR name="issn" -->
|
|
<!-- /TMPL_IF -->
|
|
</td>
|
|
<td><a href="/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=<!-- TMPL_VAR name="subscriptionid" -->" class="button" title="subscription detail"><!-- TMPL_IF name="title" --><!-- TMPL_VAR name="title" escape="html" --><!-- TMPL_ELSE -->
|
|
---
|
|
<!-- /TMPL_IF --></a>
|
|
</td>
|
|
<td><!-- TMPL_IF name="notes" --><!-- TMPL_VAR name="notes" --><!-- /TMPL_IF -->
|
|
<!-- TMPL_IF name="internalnotes" -->(<!-- TMPL_VAR name="internalnotes" -->)<!-- /TMPL_IF -->
|
|
</td>
|
|
<td>
|
|
<!-- TMPL_IF name="branchcode" --><!-- TMPL_VAR name="branchcode" --><!-- /TMPL_IF -->
|
|
<!-- TMPL_IF name="callnumber" -->(<!-- TMPL_VAR name="callnumber" -->)<!-- /TMPL_IF -->
|
|
</td>
|
|
<!-- TMPL_IF NAME="routing" -->
|
|
<td>
|
|
<!-- TMPL_IF NAME="cannotedit" -->
|
|
|
|
<!-- TMPL_ELSE -->
|
|
<!--TMPL_IF Name="routingedit"-->
|
|
<a href="/cgi-bin/koha/serials/routing.pl?subscriptionid=<!-- TMPL_VAR name="subscriptionid" -->">Edit</a>
|
|
<!-- TMPL_ELSE -->
|
|
<a href="/cgi-bin/koha/serials/routing.pl?subscriptionid=<!-- TMPL_VAR name="subscriptionid" -->&op=new">New</a>
|
|
<!--/TMPL_IF-->
|
|
<!-- /TMPL_IF -->
|
|
</td>
|
|
<!-- /TMPL_IF -->
|
|
<td><a href="/cgi-bin/koha/serials/serials-collection.pl?subscriptionid=<!-- TMPL_VAR name="subscriptionid" -->">Issue History</a>
|
|
</td>
|
|
<td>
|
|
<!-- TMPL_IF NAME="cannotedit" -->
|
|
|
|
<!-- TMPL_ELSE -->
|
|
<!-- TMPL_IF name="CAN_user_serials_receive_serials" --><a href="/cgi-bin/koha/serials/serials-edit.pl?subscriptionid=<!-- TMPL_VAR name="subscriptionid" -->&serstatus=1,3,7">Serial receive</a><!-- /TMPL_IF -->
|
|
<!-- /TMPL_IF -->
|
|
</td>
|
|
</tr>
|
|
<!-- /TMPL_LOOP -->
|
|
</tbody>
|
|
</table>
|
|
|
|
<!-- /TMPL_IF -->
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div class="yui-b">
|
|
<!-- TMPL_INCLUDE NAME="serials-menu.inc" -->
|
|
</div>
|
|
</div>
|
|
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->
|