20acaaa1ddad80c779da8038b547bbbc18d8e613
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / labels / label-edit-layout.tt
1 [% BLOCK translate_label_types %]
2 [%  SWITCH type %]
3 [%   CASE 'BIB'    %]Biblio
4 [%   CASE 'BARBIB' %]Barcode/Biblio
5 [%   CASE 'BIBBAR' %]Biblio/Barcode
6 [%   CASE 'ALT'    %]Alternating
7 [%   CASE 'BAR'    %]Barcode
8 [%  END %]
9 [% END %]
10     [% INCLUDE 'doc-head-open.inc' %]
11     <title>Koha &rsaquo; Tools &rsaquo; Labels</title>
12     [% INCLUDE 'doc-head-close.inc' %]
13     <script type="text/JavaScript" language="JavaScript">
14         //<![CDATA[
15             $(document).ready(function() {
16                 $("input[name='layout_choice']").change( function() { layout_method() } );
17                 layout_method();
18             });
19             function layout_method() {
20                 if( $("input[name='layout_choice']:checked").val() == 'layout_string' ) {
21                     $('#layout_table').hide();
22                     $('#layout_string').show();
23                 } else {
24                     $('#layout_table').show();
25                     $('#layout_string').hide();
26                 }
27             }
28         //]]>
29     </script>
30 </head>
31 [% BLOCK translate_justification_types %]
32 [%  SWITCH type %]
33 [%   CASE 'L' %]Left
34 [%   CASE 'C' %]Center
35 [%   CASE 'R' %]Right
36 [%  END %]
37 [% END %]
38 <body id="labels_label-edit-layout" class="tools labels">
39     [% INCLUDE 'header.inc' %]
40     [% INCLUDE 'cat-search.inc' %]
41     <div id="breadcrumbs">
42         <a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo;
43         <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> &rsaquo;
44         <a href="/cgi-bin/koha/labels/label-home.pl">Labels home</a> &rsaquo;
45         <a href="/cgi-bin/koha/labels/label-manage.pl?label_element=layout">Manage label layouts</a> &rsaquo;
46         [% IF ( layout_id ) %]Edit[% ELSE %]Create[% END %] Label layout
47     </div>
48     <div id="doc3" class="yui-t2">
49         <div id="bd">
50             <div id="yui-main">
51                 <div class="yui-b">
52                     <form name="input" action="/cgi-bin/koha/labels/label-edit-layout.pl" method="get">
53                         <fieldset class="rows">
54                             <legend>[% IF ( layout_id ) %]Edit[% ELSE %]Create[% END %] Label layout</legend>
55                             <ol>
56                                 <li>
57                                     <label for="layout_name">Layout name: </label>
58                                     <input type="text" name="layout_name" id="layout_name" size="20" value="[% layout_name %]" />
59                                 </li>
60                                 <li>
61                                     <label for="barcode_type">Choose barcode type (encoding): </label>
62                                     <select name="barcode_type" id="barcode_type">
63                                     [% FOREACH barcode_type IN barcode_types %]
64                                     [% IF ( barcode_type.selected ) %]
65                                     <option value="[% barcode_type.type %]" selected="selected">[% barcode_type.name %]</option>
66                                     [% ELSE %]
67                                     <option value="[% barcode_type.type %]">[% barcode_type.name %]</option>
68                                     [% END %]
69                                     [% END %]
70                                     </select>
71                                 </li>
72                                 <li>
73                                     <label for="printing_type">Choose layout type: </label>
74                                     <select name="printing_type" id="printing_type">
75                                     [% FOREACH label_type IN label_types %]
76                                     [% IF ( label_type.selected ) %]
77                                     <option value="[% label_type.type %]" selected="selected">[% PROCESS translate_label_types type=label_type.type %]</option>
78                                     [% ELSE %]
79                                     <option value="[% label_type.type %]">[% PROCESS translate_label_types type=label_type.type %]</option>
80                                     [% END %]
81                                     [% END %]
82                                     </select>
83                                 </li>
84                                 <li>
85                                     <fieldset>
86                                         <legend>Bibliographic data to print</legend>
87                                                                                 <ol>
88                                         <li class="radio">[% IF ( layout_string ) %]
89                                         <input type="radio" name="layout_choice" id="layout_choice_order" value="layout_table" checked="checked" /><label for="layout_choice_order">Choose order of text fields to print</label>
90                                         [% ELSE %]
91                                         <input type="radio" name="layout_choice" id="layout_choice_order" value="layout_table" /><label for="layout_choice_order">Choose Order Of Text Fields to Print</label>
92                                         [% END %]
93                                                                                                 <div id="layout_table">
94                                                     <p>
95                                             [% FOREACH text_field IN fields %]
96                                                         <select name="[% text_field.field_name %]" id="[% text_field.field_name |url %]">
97                                                             <option value=""></option>
98                                                             [% FOREACH orde IN [1..field_count] %]
99                                                                 [% IF ( orde == text_field.order ) %]
100                                                             <option value="[% orde %]" selected="1">[% orde %]</option>
101                                                                 [% ELSE %]
102                                                             <option value="[% orde %]">[% orde %]</option>
103                                                                 [% END %]
104                                                             [% END %]
105                                                         </select>&nbsp;<label for="[% text_field.field_name |url %]">[% text_field.field_label %]</label>
106
107                                                         &nbsp;&nbsp;
108
109                                             [% END %]
110                                                     </p>
111                                                                                         </div>
112                                             </li>
113                                             [% UNLESS ( layout_string ) %]
114                                             <li class="radio"><input type="radio" id="layout_choice_list" name="layout_choice" value="layout_string" checked="checked" /> <label for="layout_choice_list">List fields</label></li>
115                                             [% ELSE %]
116                                             <li class="radio"><input type="radio" id="layout_choice_list" name="layout_choice" value="layout_string" /> <label for="layout_choice_list">List Fields</label></li>
117                                             [% END %]
118                                            <li> <fieldset id="layout_string" class="brief">
119                                                 <label for="format_string">Data fields</label>
120                                                 <input type="text" name="format_string" id="format_string" size="80" value="[% format_string |html %]" />
121                                                 <div class="hint">
122                                                     <p>Enter a comma separated list of fields to print.  You may include any <em>Koha field</em> or MARC subfield.</p>
123                                                     <p>See online help for advanced options</p>
124                                                     <p>ex: barcode, itemcallnumber, title, "050a 050b", 300a </p>
125                                                     <p>Fields homebranch_description, holdingbranch_description, ccode_description, location_description and permanent_location_description show description instead of code.</p>
126                                                 </div>
127                                             </fieldset></li>
128                                                                                         </ol>
129                                     </fieldset>
130                                 </li>
131                                 <li>
132                                     <label for="guidebox">Draw guide boxes: </label>
133                                     [% IF ( guidebox ) %]
134                                     <input type="checkbox" name="guidebox" id="guidebox" value="1"  checked="checked" />
135                                     [% ELSE %]
136                                     <input type="checkbox" name="guidebox" id="guidebox" value="1" />
137                                     [% END %]
138                                 </li>
139                                 <li>
140                                     <label for="callnum_split">Split call numbers: </label>
141                                     [% IF ( callnum_split ) %]
142                                     <input type="checkbox" name="callnum_split" id="callnum_split" value="1"  checked="checked" />
143                                     [% ELSE %]
144                                     <input type="checkbox" name="callnum_split" id="callnum_split" value="1" />
145                                     [% END %]
146                                 </li>
147                                 <li>
148                                     <label for="text_justify">Text justification: </label>
149                                     <select name="text_justify" id="text_justify">
150                                         [% FOREACH text_justification_type IN text_justification_types %]
151                                         [% IF ( text_justification_type.selected ) %]
152                                         <option value="[% text_justification_type.type %]" selected="selected">[% PROCESS translate_justification_types type=text_justification_type.type %]</option>
153                                         [% ELSE %]
154                                         <option value="[% text_justification_type.type %]">[% PROCESS translate_justification_types type=text_justification_type.type %]</option>
155                                         [% END %]
156                                         [% END %]
157                                     </select>
158                                 </li>
159                                 <li>
160                                     <label for="font">Font: </label>
161                                     <select name="font" id="font">
162                                         [% FOREACH font_type IN font_types %]
163                                         [% IF ( font_type.selected ) %]
164                                         <option value="[% font_type.type %]" selected="selected">[% font_type.name %]</option>
165                                         [% ELSE %]
166                                         <option value="[% font_type.type %]">[% font_type.name %]</option>
167                                         [% END %]
168                                         [% END %]
169                                     </select>
170                                 </li>
171                                 <li>
172                                     <label for="font_size">Font size: </label>
173                                     <input type="text" name="font_size" id="font_size" size="2" value="[% font_size |html %]" />
174                                 </li>
175                             </ol>
176                         </fieldset>
177                         <fieldset class="action">
178                             <input type="submit" value="Save" />
179                             <a class="cancel" href="/cgi-bin/koha/labels/label-manage.pl?label_element=layout">Cancel</a>
180                             <input type="hidden" name="op" value="save" />
181                             <input type="hidden" name="layout_id" value="[% layout_id %]" />
182                         </fieldset>
183                     </form>
184                 </div>
185             </div>
186             <div class="yui-b">
187                 [% INCLUDE 'labels-menu.inc' %]
188             </div>
189         </div>
190         [% INCLUDE 'intranet-bottom.inc' %]