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