Bug 14918: Remove C4::Dates from circ/pendingreserves.pl
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / rotating_collections / transferCollection.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Koha &rsaquo; Tools &rsaquo; Rotating collections &rsaquo; Transfer collection</title>
3 [% INCLUDE 'doc-head-close.inc' %]
4 </head>
5 <body id="rcoll_transferCollection" class="tools rcoll">
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; <a href="/cgi-bin/koha/rotating_collections/rotatingCollections.pl">Rotating collections</a> &rsaquo; <a href="/cgi-bin/koha/rotating_collections/addItems.pl?colId=[% colId %]">Collection <i>[% colTitle %]</i></a> &rsaquo; Transfer collection</div>
10
11 <div id="doc3" class="yui-t2">
12     <div id="bd">
13         <div id="yui-main">
14             <div class="yui-b">
15
16                 <h1>Transfer collection <i>[% colTitle %]</i></h1>
17
18                 [% IF ( transferSuccess ) %]
19                     <div class="dialog message">
20                         <p>Collection transferred successfully</p>
21                         <p><a href="/cgi-bin/koha/rotating_collections/rotatingCollections.pl">Return to rotating collections home</a></p>
22                     </div>
23                 [% ELSIF ( transferFailure ) %]
24                     <div class="dialog alert">
25                         <p>Failed to transfer collection</p>
26                         <p><a href="/cgi-bin/koha/rotating_collections/rotatingCollections.pl">Return to rotating collections home</a></p>
27                     </div>
28                 [% END %]
29
30                 [% IF ( transferSuccess ) %]
31                 [% ELSE %]
32                     <div>
33                         <form action="transferCollection.pl" method="post">
34                             <input type="hidden" name="colId" value="[% colId %]" />
35                             <fieldset class="rows">
36                                 <ol>
37                                     <li>
38                                         <label for="toBranch">Choose your library:</label>
39                                         <select id="toBranch" name="toBranch">
40                                             [% FOREACH branchoptionloo IN branchoptionloop %]
41                                                 [% IF ( branchoptionloo.selected ) %]
42                                                     <option value="[% branchoptionloo.code %]" selected="selected">[% branchoptionloo.name %]</option>
43                                                 [% ELSE %]
44                                                     <option value="[% branchoptionloo.code %]">[% branchoptionloo.name %]</option>
45                                                 [% END %]
46                                             [% END %]
47                                         </select>
48                                     </li>
49                                 </ol>
50                             </fieldset>
51                             <fieldset class="action">
52                                 <input type="submit" value="Transfer collection"> <a href="/cgi-bin/koha/rotating_collections/rotatingCollections.pl" class="cancel">Cancel</a>
53                             </fieldset>
54                         </form>
55                     </div>
56                 [% END %]
57
58             </div> <!-- /.yui-b -->
59         </div> <!-- /#yui-main -->
60         <div class="yui-b">
61             [% INCLUDE 'tools-menu.inc' %]
62         </div>
63     </div> <!-- /#bd -->
64 [% INCLUDE 'intranet-bottom.inc' %]