Koha/koha-tmpl/intranet-tmpl/prog/en/modules/rotating_collections/rotatingCollections.tt
Katrin Fischer 12e4651746 Bug 2780 - Capitalize strings consistently (reserve, review, rotating collections)
Signed-off-by: Owen Leonard <oleonard@myacpl.org>
2012-04-10 10:04:13 +02:00

47 lines
No EOL
1.6 KiB
Text

[% INCLUDE 'doc-head-open.inc' %]
<title>Koha &rsaquo; Tools &rsaquo; 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> &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>
[% 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' %]