Bug 13618: Remove html filters at the intranet
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / patroncards / edit-template.tt
1     [% INCLUDE 'doc-head-open.inc' %]
2     <title>Koha &rsaquo; Tools &rsaquo; Patron card creator &rsaquo; Templates &rsaquo; [% IF (template_id) %]Edit ([% template_id %])[% ELSE %]New[% END %]</title>
3     [% INCLUDE 'doc-head-close.inc' %]
4     <script type="text/javascript">
5         //<![CDATA[
6         $(document).ready(function(){
7         var selectedUnit = $("#units option:selected").attr("value");
8         var unitfields = $("#page_height,#page_width,#card_width,#card_height,#top_margin,#left_margin,#col_gap,#row_gap");
9         $(unitfields).after("<span class=\"unit\">"+getUnit(selectedUnit)+"</span>");
10         $("#units").change(function(){
11             $(".unit").html(getUnit($(this).val()));
12         });
13         function getUnit(unit){
14             switch(unit){
15                 case "POINT":
16                     var unit = " pt";
17                     break;
18                 case "AGATE":
19                     var unit = " ag";
20                     break;
21                 case "INCH":
22                     var unit = " in";
23                     break;
24                 case "MM":
25                     var unit = " mm";
26                     break;
27                 case "CM":
28                     var unit = " cm";
29                     break;
30                 default:
31                     var unit = "";
32             }
33             return unit;
34         }
35         });
36         //]]>
37     </script>
38 </head>
39 <body id="pcard_edit-template" class="tools pcard">
40     [% INCLUDE 'header.inc' %]
41     [% INCLUDE 'cat-search.inc' %]
42     <div id="breadcrumbs">
43         <a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo;
44         <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> &rsaquo;
45         <a href="/cgi-bin/koha/patroncards/home.pl">Patron card creator</a> &rsaquo;
46         <a href="/cgi-bin/koha/patroncards/manage.pl?card_element=template">Templates</a> &rsaquo;
47         [% IF (template_id) %]Edit ([% template_id %])[% ELSE %]New[% END %]
48     </div>
49     <div id="doc3" class="yui-t2">
50         <div id="bd">
51             <div id="yui-main">
52                 <div class="yui-b">
53                     <div class="yui-g">
54                     [% INCLUDE 'patroncards-toolbar.inc' %]
55                         <div class="yui-u first">
56
57                         </div>
58                     </div>
59                     <form name="input" action="/cgi-bin/koha/patroncards/edit-template.pl" method="get">
60                     <div class="yui-g">
61                         <h3>[% IF (template_id) %]Edit[% ELSE %]Create[% END %] patron card template[% IF (template_id) %] ([% template_id %])[% END %]</h3>
62                         <div class="yui-u first">
63                             <fieldset class="rows">
64                                 <ol>
65                                     <li>
66                                         <span class="label">Template ID:</span>[% IF ( template_id ) %][% template_id %][% ELSE %]N/A[% END %]
67                                     </li>
68                                     <li>
69                                         <label for="template_code">Template code:</label>
70                                         <input type="text" size="30" maxlength="43" name="template_code" id="template_code" value="[% template_code %]" />
71                                     </li>
72                                     <li>
73                                         <label for="template_desc">Template description:</label>
74                                         <textarea cols="30" rows="3" id="template_desc" name="template_desc">[% template_desc %]</textarea>
75                                     </li>
76                                      <li>
77                                  <label for="units">Units:</label>
78                                  <select id="units" name="units">
79                                  [% FOREACH unit IN units %]
80
81                                     [% IF ( unit.selected ) %]
82                                     <option value="[% unit.type %]" selected="selected">
83                                     [% ELSE %]
84                                     <option value="[% unit.type %]">
85                                     [% END %]
86
87                                  [% unit.desc %]
88                                  </option>
89                                  [% END %]
90                                  </select>
91                              </li>
92                                     <li>
93                                         <label for="page_height">Page height:</label>
94                                         <input type="text" size="4" name="page_height" id="page_height" value="[% page_height %]" />
95                                     </li>
96                                     <li>
97                                         <label for="page_width">Page width:</label>
98                                         <input type="text" size="4" name="page_width" id="page_width" value="[% page_width %]" />
99                                     </li>
100                                     <li>
101                                         <label for="card_width">Card width:</label>
102                                         <input type="text" size="4" name="card_width" id="card_width" value="[% card_width %]" />
103                                     </li>
104                                     <li>
105                                         <label for="card_height">Card height:</label>
106                                         <input type="text" size="4" name="card_height" id="card_height" value="[% card_height %]" />
107                                     </li>
108
109                                 </ol>
110                             </fieldset>
111                         </div>
112                         <div class="yui-u">
113                             <fieldset class="rows">
114                                 <ol><li>
115                                     <label for="top_margin">Top page margin:</label>
116                                     <input type="text" size="4" name="top_margin" id="top_margin" value="[% top_margin %]" />
117                                 </li>
118                                 <li>
119                                     <label for="left_margin">Left page margin:</label>
120                                     <input type="text" size="4" name="left_margin" id="left_margin" value="[% left_margin %]" />
121                                 </li>
122                                     <li>
123                                         <label for="cols">Number of columns:</label>
124                                         <input type="text" size="4" name="cols" id="cols" value="[% cols %]" />
125                                     </li>
126                                     <li>
127                                         <label for="rows">Number of rows:</label>
128                                         <input type="text" size="4" name="rows" id="rows" value="[% rows %]" />
129                                     </li>
130                                     <li>
131                                         <label for="col_gap">Gap between columns:</label>
132                                         <input type="text" size="4" name="col_gap" id="col_gap" value="[% col_gap %]" />
133                                     </li>
134                                     <li>
135                                         <label for="row_gap">Gap between rows:</label>
136                                         <input type="text" size="4" name="row_gap" id="row_gap" value="[% row_gap %]" />
137                                     </li>
138
139                                     <li>
140                                         <label for="profile_id">Profile:</label>
141                                         [% IF ( profile_list ) %]
142                                         <select id="profile_id" name="profile_id">
143                                         [% FOREACH profile_lis IN profile_list %]
144                                         [% IF ( profile_lis.selected ) %]
145                                         <option value="[% profile_lis.profile_id %]" selected="selected">
146                                         [% ELSE %]
147                                         <option value="[% profile_lis.profile_id %]">
148                                         [% END %]
149                                         [% profile_lis.printer_name %]/[% profile_lis.paper_bin %]
150                                         </option>
151                                         [% END %]
152                                         </select>
153                                         [% ELSE %]
154                                         <a href="/cgi-bin/koha/patroncards/edit-profile.pl?op=new">Click here to define a printer profile.</a>
155                                         [% END %]
156                                     </li>
157                                 </ol>
158                             </fieldset>
159                         </div>
160                     </div>
161                     <div class="yui-g">
162                         <fieldset class="action">
163                             <input type="submit" class="submit" value="Save" />
164                             <a class="cancel" href="/cgi-bin/koha/patroncards/manage.pl?card_element=template">Cancel</a>
165                             <input type="hidden" name="op" value="save" />
166                             [% IF ( template_id ) %]
167                             <input type="hidden" name="template_id" value="[% template_id %]" />
168                             [% END %]
169                         </fieldset>
170                     </div>
171                 </form>
172             </div>
173         </div>
174         <div class="yui-b">
175           [% INCLUDE 'tools-menu.inc' %]
176         </div>
177     </div>
178     [% INCLUDE 'intranet-bottom.inc' %]