Kyle M Hall
c4d3f57279
Signed-off-by: Brendan Gallagher <brendan@bywatersolutions.com> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
58 lines
2.5 KiB
Text
58 lines
2.5 KiB
Text
[% USE Branches %]
|
|
[% 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" class="yui-t2">
|
|
<div id="bd">
|
|
<div class="yui-b">
|
|
[% INCLUDE 'tools-menu.inc' %]
|
|
</div>
|
|
|
|
<div class="yui-main">
|
|
<div class="yui-bd">
|
|
|
|
<h1>Rotating collections</h1>
|
|
<div>
|
|
[% IF ( collectionsLoop ) %]
|
|
<table>
|
|
<tr>
|
|
<th><strong>Title</strong></th>
|
|
<th>Description</strong></th>
|
|
<th>Current location</th>
|
|
<th> </th>
|
|
<th> </th>
|
|
<th> </th>
|
|
<th> </th>
|
|
</tr>
|
|
|
|
[% FOREACH collectionsLoo IN collectionsLoop %]
|
|
<tr>
|
|
<td>[% collectionsLoo.colTitle %]</td>
|
|
<td>[% collectionsLoo.colDesc %]</td>
|
|
<td>[% Branches.GetName( 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</a></td>
|
|
<td><a href="editCollections.pl?action=edit&colId=[% collectionsLoo.colId %]">Edit</a></td>
|
|
<td><a href="editCollections.pl?action=delete&colId=[% collectionsLoo.colId %]">Delete</a></td>
|
|
</tr>
|
|
[% END %]
|
|
</table>
|
|
[% ELSE %]
|
|
There are no collections currently defined.
|
|
[% END %]
|
|
</div>
|
|
|
|
<p>
|
|
<a class="btn" href="editCollections.pl?action=new">Create collection</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
[% INCLUDE 'intranet-bottom.inc' %]
|