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 [% IF ( removeChecked ) %]<input type="checkbox" name="removeItem" checked="checked" />
48 [% ELSE %]<input type="checkbox" name="removeItem" />[% END %]
49 <label for="removeItem">Remove item from collection</label>
53 <input type="hidden" id="colId" name="colId" value="[% colId %]" />
54 <input type="hidden" name="action" value="addItem" />
55 <tr><td align="right" colspan="99"><input type="submit" value="Submit" /></td></tr>
61 <h2>Items in this collection</h2>
62 [% IF ( collectionItemsLoop ) %]
69 [% FOREACH collectionItemsLoo IN collectionItemsLoop %]
71 <td>[% collectionItemsLoo.title |html %]</td>
72 <td>[% collectionItemsLoo.itemcallnumber %]</td>
73 <td>[% collectionItemsLoo.barcode %]</td>
78 There are no items in this collection.
84 <input type="button" value="Return to rotating collections home" onclick="window.location.href='rotatingCollections.pl'">
89 [% INCLUDE 'intranet-bottom.inc' %]