Bug 12904: Force browser to load new javascript files after upgrade
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / rotating_collections / transferCollection.tt
1 [% USE Branches %]
2 [% SET footerjs = 1 %]
3 [% INCLUDE 'doc-head-open.inc' %]
4 <title>Koha &rsaquo; Tools &rsaquo; Rotating collections &rsaquo; Transfer collection</title>
5 [% INCLUDE 'doc-head-close.inc' %]
6 </head>
7 <body id="rcoll_transferCollection" class="tools rcoll">
8 [% INCLUDE 'header.inc' %]
9 [% INCLUDE 'cat-search.inc' %]
10
11 <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>
12
13 <div id="doc3" class="yui-t2">
14     <div id="bd">
15         <div id="yui-main">
16             <div class="yui-b">
17
18                 <h1>Transfer collection <i>[% colTitle %]</i></h1>
19
20                 [% IF ( transferSuccess ) %]
21                     <div class="dialog message">
22                         <p>Collection transferred successfully</p>
23                         <p><a href="/cgi-bin/koha/rotating_collections/rotatingCollections.pl">Return to rotating collections home</a></p>
24                     </div>
25                 [% ELSIF ( transferFailure ) %]
26                     <div class="dialog alert">
27                         <p>Failed to transfer collection</p>
28                         <p><a href="/cgi-bin/koha/rotating_collections/rotatingCollections.pl">Return to rotating collections home</a></p>
29                     </div>
30                 [% END %]
31
32                 [% IF ( transferSuccess ) %]
33                 [% ELSE %]
34                     <div>
35                         <form action="transferCollection.pl" method="post">
36                             <input type="hidden" name="colId" value="[% colId %]" />
37                             <fieldset class="rows">
38                                 <ol>
39                                     <li>
40                                         <label for="toBranch">Choose your library:</label>
41                                         <select id="toBranch" name="toBranch">
42                                             [% PROCESS options_for_libraries libraries => Branches.all( unfiltered => 1 ) %]
43                                         </select>
44                                     </li>
45                                 </ol>
46                             </fieldset>
47                             <fieldset class="action">
48                                 <input type="submit" value="Transfer collection"> <a href="/cgi-bin/koha/rotating_collections/rotatingCollections.pl" class="cancel">Cancel</a>
49                             </fieldset>
50                         </form>
51                     </div>
52                 [% END %]
53
54             </div> <!-- /.yui-b -->
55         </div> <!-- /#yui-main -->
56         <div class="yui-b">
57             [% INCLUDE 'tools-menu.inc' %]
58         </div>
59     </div> <!-- /#bd -->
60
61 [% MACRO jsinclude BLOCK %]
62     <script type="text/javascript" src="[% interface %]/[% theme %]/js/tools-menu_[% KOHA_VERSION %].js"></script>
63     <script type="text/javascript" src="[% interface %]/[% theme %]/js/rotating-collections_[% KOHA_VERSION %].js"></script>
64 [% END %]
65
66 [% INCLUDE 'intranet-bottom.inc' %]