1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Koha › Tools › Rotating Collections › Add/Remove Items</title>
3 [% INCLUDE 'doc-head-close.inc' %]
6 [% INCLUDE 'header.inc' %]
7 [% INCLUDE 'cat-search.inc' %]
9 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> › <a href="/cgi-bin/koha/rotating_collections/rotatingCollections.pl">Rotating Collections</a> › Add/Remove Items</div>
15 <h1>Rotating Collections: Add/Remove Items</h1>
19 [% IF ( previousActionAdd ) %]
20 [% IF ( addSuccess ) %]
21 <div>Item with barcode '[% addedBarcode %]' Added Successfully!</div>
23 <div>Failed to add item with barcode '[% addedBarcode %]'!</div>
24 <div>Reason: <strong>[% failureMessage %]</strong></div>
28 [% IF ( previousActionRemove ) %]
29 [% IF ( removeSuccess ) %]
30 <div>Item with barcode '[% addedBarcode %]' Removed Successfully!</div>
32 <div>Failed to remove item with barcode '[% removedBarcode %]'!</div>
33 <div>Reason: <strong>[% failureMessage %]</strong></div>
37 <h3>Add Item to <i>[% colTitle %]</i></h3>
41 <form action="addItems.pl" method="post">
44 <th><label for="barcode">Barcode: </label></td>
45 <td><input type="text" id="barcode" name="barcode" /></td>
47 <input type="checkbox" name="removeItem" [% IF ( removeChecked ) %]checked[% END %] >
48 <label for="removeItem">Remove Item from Collection</label>
52 <input type="hidden" id="colId" name="colId" value="[% colId %]" />
53 <input type="hidden" name="action" value="addItem" />
54 <tr><td align="right" colspan="99"><input type="submit" value="Submit" /></td></tr>
60 <h2>Items In This Collection</h2>
61 [% IF ( collectionItemsLoop ) %]
68 [% FOREACH collectionItemsLoo IN collectionItemsLoop %]
70 <td>[% collectionItemsLoo.title |html %]</td>
71 <td>[% collectionItemsLoo.itemcallnumber %]</td>
72 <td>[% collectionItemsLoo.barcode %]</td>
77 There are no Items in this Collection.
83 <input type="button" value="Return to Rotating Collections Home" onclick="window.location.href='rotatingCollections.pl'">
88 [% INCLUDE 'intranet-bottom.inc' %]