Bug 24201: (follow-up) add desk choice with library choice
[koha-equinox.git] / koha-tmpl / intranet-tmpl / prog / en / modules / circ / selectdesk.tt
1 [% USE Koha %]
2
3 [% INCLUDE 'doc-head-open.inc' %]
4 <title>Koha &rsaquo; Circulation &rsaquo; Set Desk</title>
5 [% INCLUDE 'doc-head-close.inc' %]
6 </head>
7 <body id="circ_selectdesk" class="circ">
8 [% INCLUDE 'header.inc' %]
9 [% INCLUDE 'circ-search.inc' %]
10
11 <div id="breadcrumbs">
12          <a href="/cgi-bin/koha/mainpage.pl">Home</a>
13 &rsaquo; <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a>
14 &rsaquo; <a href="/cgi-bin/koha/circ/selectdesk.pl">Set Desk</a>
15 </div>
16
17 <div class="main container-fluid">
18     <div class="row">
19         <div class="col-sm-12">
20             <main>
21                 <div class="row">
22
23                 [% IF Koha.Preference('CircSidebar') %]
24                     <div class="col-sm-10 col-sm-push-2">
25                 [% ELSE %]
26                     <div class="col-md-10 col-md-offset-1 col-lg-8 col-lg-offset-2">
27                 [% END %]
28
29 <form method="post" action="selectdesk.pl">
30   <fieldset class="rows">
31     <legend>Set desk</legend>
32     <ol>
33       <li><label for="desk">Choose desk:</label>
34         <select name="desk_id" id="desk_id">
35         [% FOREACH desk IN desks_list %]
36         <option value="[% desk.desk_id|html %]">[% desk.desk_name|html %]</option>
37         [% END %]
38         </select>
39       </li>
40     </ol>
41     </fieldset>
42     <fieldset class="action">
43       <input type="submit" value="Submit" />
44       <a class="cancel" id="cancel_set_desk" href="[% referer or '/cgi-bin/koha/circ/circulation.pl'|html %]">Cancel</a>
45      </fieldset>
46        <input type="hidden" name="oldreferer" value="[% referer or "/cgi-bin/koha/mainpage.pl" |html %]" />
47  </form>
48
49                 </div> <!-- /.col-sm-10.col-sm-push-2 -->
50                     [% IF Koha.Preference('CircSidebar') %]
51                             <div class="col-sm-2 col-sm-pull-10">
52                                 <aside>
53                                     [% INCLUDE 'circ-nav.inc' %]
54                                 </aside>
55                             </div> <!-- /.col-sm-2.col-sm-pull-10 -->
56                     [% END %]
57                 </div> <!-- /.row -->
58             </main>
59         </div> <!-- /.col-sm-12 -->
60     </div> <!-- /.row -->
61
62 [% INCLUDE 'intranet-bottom.inc' %]