First draft of programmer's templates: a stripped-down version of the templates for...
[srvgit] / koha-tmpl / intranet-tmpl / prog / en / circ / selectbranchprinter.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->Circulation: Select Your Home Branch<!-- TMPL_INCLUDE NAME="doc-head-circ-close.inc" -->
2
3
4 <h1>Circulation: Select Your Home Branch</h1>
5
6 <form method="post" action="/cgi-bin/koha/circ/circulation.pl">
7 <!-- TMPL_VAR NAME="branch" -->
8
9 <label for="branch">Choose your Branch:</label>
10 <!--branchselection-->
11         <select name="branch" id="branch">
12         <!-- TMPL_LOOP Name="branchloop" -->
13                 <option value="<!-- TMPL_VAR Name="value" -->"<!-- TMPL_IF Name="selected" --> selected="selected"<!-- /TMPL_IF -->><!-- TMPL_VAR Name="name" --></option>
14         <!-- /TMPL_LOOP -->
15         </select>
16
17
18 <label for="printer">Choose a Network Printer:</label>
19 <!--printerselection-->
20 <select name="printer" id="printer">
21         <!-- TMPL_LOOP Name="printerloop" -->
22                 <option value="<!-- TMPL_VAR Name="value" -->"<!-- TMPL_IF Name="selected" --> selected="selected"<!-- /TMPL_IF -->><!-- TMPL_VAR Name="name" -->
23         <!-- /TMPL_LOOP -->
24         </select>
25 <input type="hidden" name="setcookies" value="1" />
26 <input type="submit" value="Submit" name="changesettings" />
27 </form>
28
29
30
31 <!-- TMPL_INCLUDE Name="intranet-bottom.inc" -->
32