Bug 5917 : Converted templates
[koha.git] / koha-tt / intranet-tmpl / prog / en / modules / rotating_collections / rotatingCollections.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Koha &rsaquo; Tools &rsaquo; Rotating Collections</title>
3 [% INCLUDE 'doc-head-close.inc' %]
4 </head>
5 <body>
6 [% INCLUDE 'header.inc' %]
7 [% INCLUDE 'cat-search.inc' %]
8
9 <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>
10
11 <div id="doc3">
12 <div id="bd">
13         <div class="yui-gb">
14
15       <h1>Rotating Collections</h1>
16       <div>
17         [% IF ( collectionsLoop ) %]
18           <table>
19             <tr>
20               <th><strong>Title</strong></th>
21               <th>Description</strong></th>
22               <th>Current Location</th>
23               <th>Add/Remove Items</th>
24               <th>Transfer Collection</th>
25             </tr>
26             [% FOREACH collectionsLoo IN collectionsLoop %]
27               <tr>
28                 <td>[% collectionsLoo.colTitle %]</td>
29                 <td>[% collectionsLoo.colDesc %]</td>
30                 <td>[% collectionsLoo.colBranchcode %]</td>
31                 <td><a href="addItems.pl?colId=[% collectionsLoo.colId %]">Add/Remove Items</a></td>
32                 <td><a href="transferCollection.pl?colId=[% collectionsLoo.colId %]">Transfer Collection</a></td>
33               </tr>
34             [% END %]
35           </table>
36         [% ELSE %]
37           There are no Collections currently defined.
38         [% END %]
39       </div>
40
41       <div>
42         <br/>
43         <input type="button" value="Edit Collections" onclick="window.location.href='editCollections.pl'"> 
44       </div>    
45 </div>
46 </div>
47 [% INCLUDE 'intranet-bottom.inc' %]