Bug 15758: Koha::Libraries - Remove GetBranches
[srvgit] / koha-tmpl / intranet-tmpl / prog / en / modules / admin / item_circulation_alerts.tt
index 9a976a0..d55801f 100644 (file)
@@ -1,5 +1,6 @@
+[% USE Branches %]
 [% INCLUDE 'doc-head-open.inc' %]
-<title>Koha &rsaquo; Administration &rsaquo; Item Circulation Alerts</title>
+<title>Koha &rsaquo; Administration &rsaquo; Item circulation alerts</title>
 [% INCLUDE 'doc-head-close.inc' %]
 <style type="text/css">
 table.grid thead th {
@@ -40,12 +41,12 @@ table.grid td.default {
 <script type="text/javascript">//<![CDATA[
 var $branch = "[% branch %]";
 $(function(){
-    $('#alerttabs > ul').tabs();
+    $('#alerttabs').tabs();
 
-    var blocked            = _('Blocked!');
-    var saving             = _('Saving...');
-    var disabledForAll     = _('Disabled for all');
-    var disabledForCurrent = _('Disabled for') + ' ' + $branch;
+    var blocked            = _("Blocked!");
+    var saving             = _("Saving...");
+    var disabledForAll     = _("Disabled for all");
+    var disabledForCurrent = _("Disabled for %s").format($branch);
 
     $('#branch_selector input:submit').hide();
     $('#branch').change(function(){
@@ -85,10 +86,10 @@ $(function(){
 }); //]]>
 </script>
 </head>
-<body>
+<body id="admin_item_circulation_alerts" class="admin">
 [% 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/admin/admin-home.pl">Administration</a> &rsaquo; Item Circulation Alerts </div>
+<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a> &rsaquo; Item circulation alerts </div>
 
 <div id="doc3" class="yui-t1">
 
@@ -99,17 +100,12 @@ $(function(){
 
 <div class="yui-g">
 <div class="yui-u first">
-<h1>Item Circulation Alerts</h1>
+<h1>Item circulation alerts</h1>
 <h2>Select a library:</h2>
 <form id="branch_selector" method="get" action="/cgi-bin/koha/admin/item_circulation_alerts.pl">
 <select id="branch" name="branch">
-[% FOREACH branche IN branches %]
-[% IF ( branche.selected ) %]
-<option value="[% branche.branchcode %]" selected="selected">[% branche.branchname %]</option>
-[% ELSE %]
-<option value="[% branche.branchcode %]">[% branche.branchname %]</option>
-[% END %]
-[% END %]
+    <option value="*">Default</option>
+    [% PROCESS options_for_libraries libraries => Branches.all( selected => branch, unfiltered => 1 ) %]
 </select>
 <input type="submit" name="pick" value="Pick" />
 </form>
@@ -141,7 +137,7 @@ $(function(){
 </div>
 </div>
 
-<h2>Circulation Alerts for [% branch_name %]</h2>
+<h2>Circulation alerts for [% Branches.GetName( branch ) || 'Default' %]</h2>
 <p>Click on the grid to toggle the settings.</p>
 
 <div id="alerttabs" class="toptabs">
@@ -157,7 +153,7 @@ $(function(){
 <tr>
   <th>&nbsp;</th>
   [% FOREACH item_type IN item_types %]
-  <th>[% item_type.br_description %]</th>
+  <th>[% item_type.description %]</th>
   [% END %]
 </tr>
 </thead>
@@ -181,7 +177,7 @@ $(function(){
 <tr>
   <th>&nbsp;</th>
   [% FOREACH item_type IN item_types %]
-  <th>[% item_type.br_description %]</th>
+  <th>[% item_type.description %]</th>
   [% END %]
 </tr>
 </thead>