Cleanup selectbranchprinter.pl and .tmpl
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / circ / selectbranchprinter.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Circulation &rsaquo; Set Library</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 <style type="text/css">
5     .noshow {display: none;}
6 </style>
7 </head>
8 <body>
9 <!-- TMPL_INCLUDE NAME="header.inc" -->
10 <!-- TMPL_INCLUDE NAME="circ-search.inc" -->
11
12 <div id="breadcrumbs">
13          <a href="/cgi-bin/koha/mainpage.pl">Home</a>
14 &rsaquo; <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a>
15 &rsaquo; <a href="/cgi-bin/koha/circ/selectbranchprinter.pl">Set Library</a>
16 </div>
17
18 <div id="doc" class="yui-t7">
19   <div id="bd">
20     <div id="yui-main">
21       <div class="yui-b">
22 <!-- NOTE this posts back to circulation to enact changes.  Should stay here. -->
23 <form method="post" action="/cgi-bin/koha/circ/circulation.pl">
24 <!-- TMPL_IF NAME="singleBranchMode" -->
25     <br />Single Branch mode is ON.
26 <!-- TMPL_ELSE -->
27 <fieldset class="rows">
28         <legend>Set Library</legend>
29         <ol><li><label for="branch">Choose library:</label>
30         <select name="branch" id="branch">
31         <!-- TMPL_LOOP Name="branchloop" -->
32                 <!-- TMPL_IF NAME="selected" -->
33         <option value="<!-- TMPL_VAR NAME="value" -->" selected="selected"><!-- TMPL_VAR NAME="branchname" --></option>
34         <!-- TMPL_ELSE -->
35         <option value="<!-- TMPL_VAR NAME="value" -->"><!-- TMPL_VAR NAME="branchname" --></option>
36         <!-- /TMPL_IF -->
37         <!-- /TMPL_LOOP -->
38         </select></li>
39 <!-- /TMPL_IF -->
40
41 <!-- TMPL_IF Name="printerloop" -->
42     <li><label for="printer">Choose a network printer:</label>
43     <input type="hidden" name="setcookies" value="1" />
44     <select name="printer" id="printer">
45         <!-- TMPL_LOOP Name="printerloop" -->
46             <!-- TMPL_IF NAME="selected" -->
47                 <option value="<!-- TMPL_VAR NAME="value" -->" selected="selected"><!-- TMPL_VAR NAME="name" --></option>
48             <!-- TMPL_ELSE -->
49                                 <option value="<!-- TMPL_VAR NAME="value" -->"><!-- TMPL_VAR NAME="name" --></option>
50             <!-- /TMPL_IF -->
51         <!-- /TMPL_LOOP -->
52         </select></li>
53 <!-- /TMPL_IF --></ol>
54 </fieldset>
55 <fieldset class="action"><input type="submit" value="Submit" name="changesettings" /></fieldset>
56 <div class="noshow">
57     <!-- TMPL_LOOP Name="recycle_loop" -->
58     <input name="<!-- TMPL_VAR NAME="param" -->" value="<!-- TMPL_VAR NAME="value" ESCAPE='HTML' -->" />
59     <!-- /TMPL_LOOP -->
60     <input type="hidden" name="oldreferer" value="<!-- TMPL_VAR NAME='referer' ESCAPE='HTML' DEFAULT='/cgi-bin/koha/circ/circulation.pl' -->" />
61     <div>referer is:
62         <a href="<!-- TMPL_VAR NAME='referer' ESCAPE='HTML' DEFAULT='/cgi-bin/koha/circ/circulation.pl' -->">
63                  <!-- TMPL_VAR NAME='referer' ESCAPE='HTML' DEFAULT='/cgi-bin/koha/circ/circulation.pl' -->
64         </a>
65     </div>
66 </div>
67 </form>
68
69       </div>
70     </div>
71   </div>
72 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->