Rotating Collections Fixes
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / rotating_collections / rotatingCollections.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Tools &rsaquo; Rotating Collections</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 </head>
5 <body>
6 <!-- TMPL_INCLUDE NAME="header.inc" -->
7 <!-- TMPL_INCLUDE NAME="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         <!-- TMPL_IF NAME="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             <!-- TMPL_LOOP NAME="collectionsLoop" -->
27               <tr>
28                 <td><!-- TMPL_VAR NAME="colTitle" --></td>
29                 <td><!-- TMPL_VAR NAME="colDesc" --></td>
30                 <td><!-- TMPL_VAR NAME="colBranchcode" --></td>
31                 <td><a href="addItems.pl?colId=<!-- TMPL_VAR NAME="colId" -->">Add/Remove Items</a></td>
32                 <td><a href="transferCollection.pl?colId=<!-- TMPL_VAR NAME="colId" -->">Transfer Collection</a></td>
33               </tr>
34             <!-- /TMPL_LOOP -->
35           </table>
36         <!-- TMPL_ELSE -->
37           There are no Collections currently defined.
38         <!-- /TMPL_IF -->
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 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->