Bug 29602: Surround strings with span tag
[srvgit] / koha-tmpl / intranet-tmpl / prog / en / modules / labels / label-edit-profile.tt
index 88243b2..48073db 100644 (file)
@@ -1,82 +1,78 @@
+[% USE raw %]
+[% SET footerjs = 1 %]
     [% INCLUDE 'doc-head-open.inc' %]
-    <title>Koha &rsaquo; Tools &rsaquo; Labels</title>
+    <title>[% IF ( profile_id ) %]Edit printer profile [% profile_id | html %] [% ELSE %] New printer profile [% END%] &rsaquo; Profiles &rsaquo; Label creator &rsaquo; Tools &rsaquo; Koha</title>
     [% INCLUDE 'doc-head-close.inc' %]
-       <script type="text/javascript">
-        //<![CDATA[
-               $(document).ready(function(){
-               var selectedUnit = $("#units option:selected").attr("value");
-               var unitfields = $("#offset_horz,#offset_vert,#creep_horz,#creep_vert");
-               $(unitfields).after("<span class=\"unit\">"+getUnit(selectedUnit)+"</span>");
-               $("#units").change(function(){
-                       $(".unit").html(getUnit($(this).val()));
-               });
-               function getUnit(unit){
-                       switch(unit){
-                               case "POINT":
-                                       var unit = " pt";
-                                       break;
-                               case "AGATE":
-                                       var unit = " ag";
-                                       break;
-                               case "INCH":
-                                       var unit = " in";
-                                       break;
-                               case "MM":
-                                       var unit = " mm";
-                                       break;
-                               case "CM":
-                                       var unit = " cm";
-                                       break;
-                               default:
-                                       var unit = "";
-                       }
-                       return unit;
-               }
-               });
-        //]]>
-       </script>
 </head>
+
 <body id="labels_label-edit-profile" class="tools labels">
     [% INCLUDE 'header.inc' %]
     [% INCLUDE 'cat-search.inc' %]
-    <div id="breadcrumbs">
-        <a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo;
-        <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> &rsaquo;
-        <a href="/cgi-bin/koha/labels/label-home.pl">Labels</a> &rsaquo;
-        <a href="/cgi-bin/koha/labels/label-manage.pl?label_element=profile">Printer Profiles</a> &rsaquo;
-        Edit Printer Profile
-    </div>
-    <div id="doc3" class="yui-t2">
-        <div id="bd">
-           <div id="yui-main">
-               <div class="yui-b">
-                        <div class="yui-g">
-                            <h3>Edit Printer Profile</h3>
-                                <div class="yui-g first">
+
+    <nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb">
+        <ol>
+            <li>
+                <a href="/cgi-bin/koha/mainpage.pl">Home</a>
+            </li>
+            <li>
+                <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a>
+            </li>
+            <li>
+                <a href="/cgi-bin/koha/labels/label-home.pl">Label creator</a>
+            </li>
+            <li>
+                <a href="/cgi-bin/koha/labels/label-manage.pl?label_element=profile">Profiles</a>
+            </li>
+
+                <li>
+                    <a href="#" aria-current="page">
+                        [% IF ( profile_id ) %]
+                            Edit printer profile [% profile_id | html %]
+                        [% ELSE %]
+                            New printer profile
+                        [% END%]
+                    </a>
+                </li>
+        </ol>
+    </nav>
+
+    <div class="main container-fluid">
+        <div class="row">
+            <div class="col-sm-10 col-sm-push-2">
+                <main>
+
+                    [% INCLUDE 'labels-toolbar.inc' %]
+
+                    [% IF ( profile_id ) %]
+                        <h1>Edit printer profile [% profile_id | html %]</h1>
+                    [% ELSE %]
+                        <h1>New printer profile</h1>
+                    [% END%]
+
                     <form name="input" action="/cgi-bin/koha/labels/label-edit-profile.pl" method="get">
                                     <fieldset class="rows"><legend>Profile settings</legend>
                                         <ol>
                                             <li>
                                                 [% IF ( profile_id ) %]
-                                                 <span class="label">Printer name:</span>[% printer_name %]
-                                                <input type="hidden" name="printer_name" value="[% printer_name %]" />
+                                                 <span class="label">Printer name:</span>[% printer_name | html %]
+                                                <input type="hidden" name="printer_name" value="[% printer_name | html %]" />
                                                 [% ELSE %]
                                                 <label for="printer_name">Printer name:</label><input type="text"  size="20" name="printer_name" id="printer_name" />
                                                 [% END %]
                                             </li>
                                             <li>
                                                 [% IF ( profile_id ) %]
-                                                                                               <span class="label">Paper bin:</span> [% paper_bin %]
-                                                <input type="hidden" name="paper_bin" value="[% paper_bin %]" />
+                                                                                               <span class="label">Paper bin:</span> [% paper_bin | html %]
+                                                <input type="hidden" name="paper_bin" value="[% paper_bin | html %]" />
                                                 [% ELSE %]
                                                 <label for="paper_bin">Paper bin:</label><input type="text"  size="20" name="paper_bin" id="paper_bin" />
                                                 [% END %]
                                             </li>
                                             <li>
                                                 [% IF ( label_template ) %]
-                                                 <label for="template_name">Template name:</label> [% label_template %]
+                                                 <label for="template_name">Template name:</label> [% label_template | html %]
                                                 [% ELSE %]
-                                                 <span class="label">Template name:</span> Profile Unassigned
+                                                 <span class="label">Template name:</span> Profile unassigned
                                                 [% END %]
                                             </li>
                                             <li>
                                                 <select id="units" name="units">
                                                     [% FOREACH unit IN units %]
                                                     [% IF ( unit.selected ) %]
-                                                    <option value="[% unit.type %]" selected="selected">
+                                                    <option value="[% unit.type | html %]" selected="selected">
                                                     [% ELSE %]
-                                                    <option value="[% unit.type %]">
+                                                    <option value="[% unit.type | html %]">
+                                                    [% END %]
+                                                    [% SWITCH unit.type %]
+                                                    [%   CASE 'POINT' %]
+                                                        <span>PostScript points</span>
+                                                    [%   CASE 'AGATE' %]
+                                                        <span>Agates</span>
+                                                    [%   CASE 'INCH' %]
+                                                        <span>US Inches</span>
+                                                    [%   CASE 'MM' %]
+                                                        <span>SI Millimeters</span>
+                                                    [%   CASE 'CM' %]
+                                                        <span>SI Centimeters</span>
                                                     [% END %]
-                                                    [% unit.desc %]
                                                     </option>
                                                     [% END %]
                                                 </select>
                                             </li>
                                          </ol>
                                                                                </fieldset>
-                                                                               
+
                                                                                <fieldset class="rows"><legend>Offset:</legend>
                                                                                <ol>
                                             <li>
-                                                <label for="offset_horz">Horizontal: </label><input type="text"  size="4" name="offset_horz" id="offset_horz" value="[% offset_horz %]" />
+                                                <label for="offset_horz">Horizontal: </label><input type="text"  size="4" name="offset_horz" id="offset_horz" value="[% offset_horz | html %]" />
                                             </li>
                                             <li>
-                                                <label for="offset_vert">Vertical: </label><input type="text" size="4" name="offset_vert" id="offset_vert" value="[% offset_vert %]" />
+                                                <label for="offset_vert">Vertical: </label><input type="text" size="4" name="offset_vert" id="offset_vert" value="[% offset_vert | html %]" />
                                             </li>
                                          </ol>
                                                                                </fieldset>
-                                                                               
+
                                                                                <fieldset class="rows"><legend>Creep:</legend>
                                                                                <ol>
                                             <li>
-                                                <label for="creep_horz">Horizontal: </label><input type="text"  size="4" name="creep_horz" id="creep_horz" value="[% creep_horz %]" />
+                                                <label for="creep_horz">Horizontal: </label><input type="text"  size="4" name="creep_horz" id="creep_horz" value="[% creep_horz | html %]" />
                                             </li>
                                             <li>
-                                                <label for="creep_vert">Vertical: </label><input type="text" size="4" name="creep_vert" id="creep_vert" value="[% creep_vert %]" />
+                                                <label for="creep_vert">Vertical: </label><input type="text" size="4" name="creep_vert" id="creep_vert" value="[% creep_vert | html %]" />
                                             </li>
                                         </ol>
                                     </fieldset>
                                         <input type="submit" value="Save" />
                                         <a href="/cgi-bin/koha/labels/label-manage.pl?label_element=profile" class="cancel">Cancel</a>
                                         <input type="hidden" name="op" value="save" />
-                                        <input type="hidden" name="profile_id" value="[% profile_id %]" />
+                                        <input type="hidden" name="profile_id" value="[% profile_id | html %]" />
                                     </fieldset>
                     </form>
-                                </div>
-                            </div>
-                        </div>
-                </div>
-                <div class="yui-b">
-                    [% INCLUDE 'labels-menu.inc' %]
-                </div>
-            </div>
-            [% INCLUDE 'intranet-bottom.inc' %]
+
+            </main>
+        </div> <!-- /.col-sm-10.col-sm-push-2 -->
+
+        <div class="col-sm-2 col-sm-pull-10">
+            <aside>
+                [% INCLUDE 'tools-menu.inc' %]
+            </aside>
+        </div> <!-- /.col-sm-2.col-sm-pull-10 -->
+     </div> <!-- /.row -->
+
+[% MACRO jsinclude BLOCK %]
+    [% Asset.js("js/tools-menu.js") | $raw %]
+    <script>
+        $(document).ready(function(){
+            var selectedUnit = $("#units option:selected").attr("value");
+            var unitfields = $("#offset_horz,#offset_vert,#creep_horz,#creep_vert");
+            $(unitfields).after("<span class=\"unit\">"+getUnit(selectedUnit)+"</span>");
+            $("#units").change(function(){
+                $(".unit").html(getUnit($(this).val()));
+            });
+        });
+        function getUnit(unit){
+            switch(unit){
+                case "POINT":
+                    var unit = " pt";
+                    break;
+                case "AGATE":
+                    var unit = " ag";
+                    break;
+                case "INCH":
+                    var unit = " in";
+                    break;
+                case "MM":
+                    var unit = " mm";
+                    break;
+                case "CM":
+                    var unit = " cm";
+                    break;
+                default:
+                    var unit = "";
+            }
+            return unit;
+        }
+    </script>
+[% END %]
+
+[% INCLUDE 'intranet-bottom.inc' %]