]> git.koha-community.org Git - koha.git/blob - koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-edit-layout.tmpl
[8/40] Adding new layout management page
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / labels / label-edit-layout.tmpl
1     <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2     <title>Koha &rsaquo; Tools &rsaquo; Labels</title>
3     <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4     <script type="text/JavaScript" language="JavaScript">
5         //<![CDATA[
6             $(document).ready(function() {
7                 $("input[@name='layout_choice']").change( function() { layout_method() } );
8                 layout_method();
9             });
10             function layout_method() {
11                 if( $("input[@name='layout_choice']:checked").val() == 'layout_string' ) {
12                     $('#layout_table').hide();
13                     $('#layout_string').show();
14                 } else {
15                     $('#layout_table').show();
16                     $('#layout_string').hide();
17                 }
18             }
19         //]]>
20     </script>
21 </head>
22 <body>
23     <!-- TMPL_INCLUDE NAME="header.inc" -->
24     <!-- TMPL_INCLUDE NAME="cat-search.inc" -->
25     <div id="breadcrumbs">
26         <a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo;
27         <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> &rsaquo;
28         <a href="/cgi-bin/koha/labels/label-home.pl">Labels</a> &rsaquo;
29         <!-- TMPL_IF NAME="layout_id" -->Edit<!-- TMPL_ELSE -->Create<!-- /TMPL_IF --> Label Layout
30     </div>
31     <div id="doc3" class="yui-t2">
32         <div id="bd">
33             <div id="yui-main">
34                 <div class="yui-b">
35                     <!-- TMPL_INCLUDE NAME="tools-labels-toolbar.inc" -->
36                     <form name="input" action="/cgi-bin/koha/labels/label-edit-layout.pl" method="get">
37                         <fieldset class="rows">
38                             <legend><!-- TMPL_IF NAME="layout_id" -->Edit<!-- TMPL_ELSE -->Create<!-- /TMPL_IF --> Label Layout</legend>
39                             <ol>
40                                 <li>
41                                     <label for="layout_name">Layout Name</label>
42                                     <input type="text" name="layout_name" id="layout_name" size="20" value="<!-- TMPL_VAR NAME="layout_name" -->" />
43                                 </li>
44                                 <li>
45                                     <label for="barcode_type">Choose Barcode Type (encoding)</label>
46                                     <select name="barcode_type" id="barcode_type">
47                                     <!-- TMPL_LOOP NAME="barcode_types" -->
48                                     <!-- TMPL_IF NAME="selected" -->
49                                     <option value="<!-- TMPL_VAR NAME="type" -->" selected="selected"><!-- TMPL_VAR NAME="name" --></option>
50                                     <!-- TMPL_ELSE -->
51                                     <option value="<!-- TMPL_VAR NAME="type" -->"><!-- TMPL_VAR NAME="name" --></option>
52                                     <!-- /TMPL_IF -->
53                                     <!-- /TMPL_LOOP -->
54                                     </select>
55                                 </li>
56                                 <li>
57                                     <label for="printing_type">Choose Layout Type</label>
58                                     <select name="printing_type" id="printing_type">
59                                     <!-- TMPL_LOOP NAME="label_types" -->
60                                     <!-- TMPL_IF NAME="selected" -->
61                                     <option value="<!-- TMPL_VAR NAME="type" -->" selected="selected"><!-- TMPL_VAR NAME="name" --></option>
62                                     <!-- TMPL_ELSE -->
63                                     <option value="<!-- TMPL_VAR NAME="type" -->"><!-- TMPL_VAR NAME="name" --></option>
64                                     <!-- /TMPL_IF -->
65                                     <!-- /TMPL_LOOP -->
66                                     </select>
67                                 </li>
68                                 <li> 
69                                     <fieldset class="rows">
70                                         <legend>Bibliographic Data to Print</legend>
71                                         <input type="radio" name="layout_choice" value="layout_table" <!-- TMPL_UNLESS NAME="layout_string" -->checked="checked"<!-- /TMPL_UNLESS -->" >Choose Order Of Text Fields to Print</input>
72                                         <br />
73                                             <fieldset id="layout_table">
74                                                 <table summary="fields to print">
75                                                     <!-- TMPL_LOOP NAME="field_table" -->
76                                                     <tr>
77                                                         <!-- TMPL_LOOP NAME="text_fields" -->
78                                                         <!-- TMPL_IF NAME="field_empty" -->
79                                                         <td>
80                                                             &nbsp;
81                                                         </td>
82                                                         <!-- TMPL_ELSE -->
83                                                         <td>
84                                                             <select name="<!-- TMPL_VAR NAME="field_name" -->" id="<!-- TMPL_VAR NAME="field_name" -->">
85                                                                 <!-- TMPL_LOOP NAME="order" -->
86                                                                 <!-- TMPL_IF Name="selected" -->
87                                                                 <option value="<!-- TMPL_VAR Name="num" -->" selected="selected"><!-- TMPL_VAR Name="num" --></option>
88                                                                 <!-- TMPL_ELSE -->
89                                                                 <option value="<!-- TMPL_VAR Name="num" -->"><!-- TMPL_VAR Name="num" --></option>
90                                                                 <!-- /TMPL_IF -->
91                                                                 <!-- /TMPL_LOOP -->
92                                                             </select>
93                                                             <label for="<!-- TMPL_VAR NAME="field_name" -->"><!-- TMPL_VAR NAME="field_label" --></label>
94                                                         </td>
95                                                         <!-- /TMPL_IF -->
96                                                         <!-- /TMPL_LOOP -->
97                                                     </tr>
98                                                     <!-- /TMPL_LOOP -->
99                                                 </table>
100                                                 <br />
101                                             </fieldset>
102                                             <br />
103                                             <input type="radio" name="layout_choice" value="layout_string" <!-- TMPL_IF NAME="layout_string" -->checked="checked"<!-- /TMPL_IF -->"> List Fields </input>
104                                             <fieldset id="layout_string" class="brief">
105                                                 <label for="format_string">Data Fields</label>
106                                                 <input type="text" name="format_string" id="format_string" size="80" value="<!-- TMPL_VAR ESCAPE='HTML' NAME="format_string" -->" />
107                                                 <div class="help">
108                                                     <p>Enter a comma separated list of fields to print.  You may include any <em>Koha field</em> or MARC subfield.</p>
109                                                     <p>See online help for advanced options</p>
110                                                     <p>ex: barcode, itemcallnumber, title, "050a 050b", 300a </p>
111                                                 </div>
112                                             </fieldset>
113                                     </fieldset>   
114                                 </li>
115                                 <li>
116                                     <label for="guidebox">Draw Guide Boxes</label>
117                                     <!-- TMPL_IF NAME="guidebox"-->
118                                     <input type="checkbox" name="guidebox" id="guidebox" value="1"  checked="checked" />
119                                     <!-- TMPL_ELSE -->
120                                     <input type="checkbox" name="guidebox" id="guidebox" value="1" />
121                                     <!-- /TMPL_IF -->
122                                 </li>
123                                 <li>
124                                     <label for="callnum_split">Split Call Numbers</label>
125                                     <!-- TMPL_IF NAME="callnum_split"-->
126                                     <input type="checkbox" name="callnum_split" id="callnum_split" value="1"  checked="checked" />
127                                     <!-- TMPL_ELSE -->
128                                     <input type="checkbox" name="callnum_split" id="callnum_split" value="1" />
129                                     <!-- /TMPL_IF -->
130                                 </li>
131                                 <li>
132                                     <label for="text_justify">Text Justification</label>
133                                     <select name="text_justify" id="text_justify">
134                                         <!-- TMPL_LOOP Name="text_justification_types" -->
135                                         <!-- TMPL_IF Name="selected" -->
136                                         <option value="<!-- TMPL_VAR Name="type" -->" selected="selected"><!-- TMPL_VAR Name="name" --></option>
137                                         <!-- TMPL_ELSE -->
138                                         <option value="<!-- TMPL_VAR Name="type" -->"><!-- TMPL_VAR Name="name" --></option>
139                                         <!-- /TMPL_IF -->
140                                         <!-- /TMPL_LOOP -->
141                                     </select>
142                                 </li>
143                                 <li>
144                                     <label for="font">Font</label>
145                                     <select name="font" id="font">
146                                         <!-- TMPL_LOOP Name="font_types" -->
147                                         <!-- TMPL_IF Name="selected" -->
148                                         <option value="<!-- TMPL_VAR Name="type" -->" selected="selected"><!-- TMPL_VAR Name="name" --></option>
149                                         <!-- TMPL_ELSE -->
150                                         <option value="<!-- TMPL_VAR Name="type" -->"><!-- TMPL_VAR Name="name" --></option>
151                                         <!-- /TMPL_IF -->
152                                         <!-- /TMPL_LOOP -->
153                                     </select>
154                                 </li>
155                                 <li>
156                                     <label for="font_size">Font Size</label>
157                                     <input type="text" name="font_size" id="font_size" size="2" value="<!-- TMPL_VAR ESCAPE='HTML' NAME="font_size" -->" />
158                                 </li>
159                             </ol>
160                         </fieldset>
161                         <fieldset class="action">
162                             <input type="submit" value="Submit" /><a class="cancel" href="/cgi-bin/koha/labels/label-layout.pl">Cancel</a>
163                             <input type="hidden" name="op" value="save" />
164                             <input type="hidden" name="layout_id" value="<!-- TMPL_VAR NAME="layout_id" -->" />
165                         </fieldset>
166                     </form>
167                 </div>
168             </div>
169             <div class="yui-b">
170                 <!-- TMPL_INCLUDE NAME="labels-menu.inc" -->
171             </div>
172         </div>
173         <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->