12e4651746
Signed-off-by: Owen Leonard <oleonard@myacpl.org>
47 lines
No EOL
1.6 KiB
Text
47 lines
No EOL
1.6 KiB
Text
[% INCLUDE 'doc-head-open.inc' %]
|
|
<title>Koha › Tools › Rotating collections</title>
|
|
[% INCLUDE 'doc-head-close.inc' %]
|
|
</head>
|
|
<body id="rcoll_rotatingCollections" class="tools rcoll">
|
|
[% INCLUDE 'header.inc' %]
|
|
[% INCLUDE 'cat-search.inc' %]
|
|
|
|
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> › Rotating collections</div>
|
|
|
|
<div id="doc3">
|
|
<div id="bd">
|
|
<div class="yui-gb">
|
|
|
|
<h1>Rotating collections</h1>
|
|
<div>
|
|
[% IF ( 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>
|
|
[% FOREACH collectionsLoo IN collectionsLoop %]
|
|
<tr>
|
|
<td>[% collectionsLoo.colTitle %]</td>
|
|
<td>[% collectionsLoo.colDesc %]</td>
|
|
<td>[% collectionsLoo.colBranchcode %]</td>
|
|
<td><a href="addItems.pl?colId=[% collectionsLoo.colId %]">Add/Remove Items</a></td>
|
|
<td><a href="transferCollection.pl?colId=[% collectionsLoo.colId %]">Transfer Collection</a></td>
|
|
</tr>
|
|
[% END %]
|
|
</table>
|
|
[% ELSE %]
|
|
There are no collections currently defined.
|
|
[% END %]
|
|
</div>
|
|
|
|
<div>
|
|
<br/>
|
|
<input type="button" value="Edit collections" onclick="window.location.href='editCollections.pl'">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
[% INCLUDE 'intranet-bottom.inc' %] |