Koha/koha-tmpl/intranet-tmpl/prog/en/modules/rotating_collections/rotatingCollections.tmpl
Kyle M Hall 844f63f1f8 Rotating Collections Fixes
This patch does the following:
  * Fixes the typos in updatedatabase.pl ( updates colBranchcode to varchar(10)
  * Adds the rotating_collections template files that somehow were not committed
  * Adds a missing sub from RotatingCollections.pm that must been deleted by accident
  * Adds the neccessary hooks in returns.pl to warn that and item needs to be returned
    to the branch that currently holds the collection.

Signed-off-by: Galen Charlton <gmcharlt@gmail.com>
2010-02-02 19:22:05 -05:00

47 lines
No EOL
1.7 KiB
Cheetah

<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
<title>Koha &rsaquo; Tools &rsaquo; Rotating Collections</title>
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
</head>
<body>
<!-- TMPL_INCLUDE NAME="header.inc" -->
<!-- TMPL_INCLUDE NAME="cat-search.inc" -->
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> &rsaquo; Rotating Collections</div>
<div id="doc3">
<div id="bd">
<div class="yui-gb">
<h1>Rotating Collections</h1>
<div>
<!-- TMPL_IF NAME="collectionsLoop" -->
<table>
<tr>
<th><strong>Title</strong></th>
<th>Description</strong></th>
<th>Current Location</th>
<th>Add/Remove Items</th>
<th>Transfer Collection</th>
</tr>
<!-- TMPL_LOOP NAME="collectionsLoop" -->
<tr>
<td><!-- TMPL_VAR NAME="colTitle" --></td>
<td><!-- TMPL_VAR NAME="colDesc" --></td>
<td><!-- TMPL_VAR NAME="colBranchcode" --></td>
<td><a href="addItems.pl?colId=<!-- TMPL_VAR NAME="colId" -->">Add/Remove Items</a></td>
<td><a href="transferCollection.pl?colId=<!-- TMPL_VAR NAME="colId" -->">Transfer Collection</a></td>
</tr>
<!-- /TMPL_LOOP -->
</table>
<!-- TMPL_ELSE -->
There are no Collections currently defined.
<!-- /TMPL_IF -->
</div>
<div>
<br/>
<input type="button" value="Edit Collections" onclick="window.location.href='editCollections.pl'">
</div>
</div>
</div>
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->