adding calendar popup to member entry
[srvgit] / koha-tmpl / intranet-tmpl / prog / en / circ / selectbranchprinter.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Circulation &rsaquo; Set Branch<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
2 <!-- TMPL_INCLUDE NAME="menus.inc" -->
3 <!-- TMPL_INCLUDE NAME="menu-circ.inc" -->
4
5
6 <h1>Circulation &rsaquo; Set Branch</h1>
7
8 <form method="post" action="/cgi-bin/koha/circ/circulation.pl">
9 <!-- TMPL_VAR NAME="branch" -->
10
11 <label for="branch">Choose branch:</label>
12 <!--branchselection-->
13         <select name="branch" id="branch">
14         <!-- TMPL_LOOP Name="branchloop" -->
15                 <option value="<!-- TMPL_VAR Name="value" -->"<!-- TMPL_IF Name="selected" --> selected="selected"<!-- /TMPL_IF -->><!-- TMPL_VAR Name="name" --></option>
16         <!-- /TMPL_LOOP -->
17         </select>
18
19
20 <!-- TMPL_IF Name="printerloop" -->
21     <label for="printer">Choose a network printer:</label>
22     <!--printerselection-->
23     <select name="printer" id="printer">
24         <!-- TMPL_LOOP Name="printerloop" -->
25             <option value="<!-- TMPL_VAR Name="value" -->"<!-- TMPL_IF Name="selected" --> selected="selected"<!-- /TMPL_IF -->><!-- TMPL_VAR Name="name" -->
26         <!-- /TMPL_LOOP -->
27         </select>
28 <!-- /TMPL_IF -->
29     <input type="hidden" name="setcookies" value="1" />
30     <input type="submit" value="Submit" name="changesettings" />
31 </form>
32
33
34 <!-- TMPL_INCLUDE Name="intranet-bottom.inc" -->
35