Koha/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-home.tmpl
Garry Collum db1516269d Bug 3910: Removes an erroneous heading from the serials search results.
Removes the 'Search for Serial Routing' heading from the serials search result screen.

There is no code in the template that performs a routing search, and links to the routing tables are provided in the serials search results.

Signed-off-by: Galen Charlton <gmcharlt@gmail.com>
2010-05-24 07:55:03 -04:00

149 lines
4.7 KiB
Cheetah

<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
<title>Koha &rsaquo; 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> &rsaquo; <!-- TMPL_IF NAME="done_searched"--><a href="/cgi-bin/koha/serials/serials-home.pl">Serials</a> &rsaquo; 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">&nbsp;</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" -->
&nbsp;
<!-- 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" -->&amp;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" -->
&nbsp;
<!-- TMPL_ELSE -->
<a href="/cgi-bin/koha/serials/serials-edit.pl?subscriptionid=<!-- TMPL_VAR name="subscriptionid" -->&amp;serstatus=1,3,7">Serial receive</a>
<!-- /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" -->