Koha/koha-tmpl/intranet-tmpl/prog/en/modules/rotating_collections/rotatingCollections.tt
Kyle M Hall c4d3f57279 Bug 8836 [QA Followup 2]
Signed-off-by: Brendan Gallagher <brendan@bywatersolutions.com>

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
2014-11-06 15:12:19 -03:00

58 lines
2.5 KiB
Text

[% USE Branches %]
[% 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" 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>&nbsp;</th>
<th>&nbsp;</th>
<th>&nbsp;</th>
<th>&nbsp;</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' %]