Fix for Bug 6458 - incorrect parsing result in translation processing / branches
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / admin / branches.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Koha &rsaquo; Administration &rsaquo; Libraries and Groups
3 [% IF ( editcategory ) %]
4     &rsaquo;[% IF ( categorycode ) %]Edit Group [% categorycode %][% ELSE %]New Group[% END %]
5 [% ELSIF ( delete_category ) %]
6     &rsaquo; Confirm Deletion of Group [% categorycode %]
7 [% ELSIF ( add ) %]
8     &rsaquo;[% IF ( heading_branches_add_branch_p ) %]New library[% ELSE %]Modify library [% branchcode %][% END %]
9 [% ELSIF ( delete_confirm ) %]
10     &rsaquo; Confirm deletion of library '[% branchcode %]'
11 [% END %]
12 </title>
13 [% INCLUDE 'doc-head-close.inc' %]
14 <script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.tablesorter.min.js"></script>
15 <script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.tablesorter.pager.js"></script>
16 </head>
17 <body>
18 [% INCLUDE 'header.inc' %]
19 [% INCLUDE 'cat-search.inc' %]
20
21 <div id="breadcrumbs">
22     <a href="/cgi-bin/koha/mainpage.pl">Home</a>
23 &rsaquo; <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a>
24 &rsaquo; <a href="/cgi-bin/koha/admin/branches.pl">Libraries and Groups</a>
25 [% IF ( editcategory ) %]
26 &rsaquo; [% IF ( categorycode ) %]Edit Group [% categorycode %][% ELSE %]New Group[% END %]
27 [% ELSIF ( delete_category ) %]
28 &rsaquo; Confirm Deletion of Group [% categorycode %]
29 [% ELSIF ( add ) %]
30 &rsaquo; [% IF ( heading_branches_add_branch_p ) %]New library[% ELSE %]Modify library [% branchcode %][% END %]
31 [% ELSIF ( delete_confirm ) %]
32 &rsaquo; Confirm deletion of library '[% branchcode %]'
33 [% END %]
34 </div>
35
36 <div id="doc3" class="yui-t2">
37    
38    <div id="bd">
39         <div id="yui-main">
40         <div class="yui-b">
41         [% IF ( else ) %]
42         <div id="toolbar">
43         <script type="text/javascript">
44         //<![CDATA[
45
46         // prepare DOM for YUI Toolbar
47
48          $(document).ready(function() {
49             yuiToolbar();
50                 $.tablesorter.defaults.widgets = ['zebra']; 
51                 $("#branchest").tablesorter({
52                         sortList: [[0,0]],
53                         headers: { 3:{sorter:false},4:{sorter:false},5:{sorter:false},6:{sorter:false}}
54                 }).tablesorterPager({container: $("#pagerbranchest"),positionFixed: false,size: 10}); 
55                 }); 
56         // YUI Toolbar Functions
57
58         function yuiToolbar() {
59             new YAHOO.widget.Button("newbranch");
60                 new YAHOO.widget.Button("newcategory");
61         }
62
63         //]]>
64         </script>
65         <ul class="toolbar">
66         <li><a id="newbranch" href="/cgi-bin/koha/admin/branches.pl?op=add">New Library</a></li>
67         <li><a id="newcategory" href="/cgi-bin/koha/admin/branches.pl?op=editcategory">New Group</a></li>
68 </ul></div>
69 [% END %]
70
71 [% IF ( add ) %]
72     [% IF ( ERROR1 ) %]<div class="dialog message">Library with that code already exists &mdash; Please enter a unique code</div>[% END %]
73   <h3>[% IF ( heading_branches_add_branch_p ) %]New library[% ELSE %]Modify library[% END %]</h3>
74     <form action="[% action %]" name="Aform" method="post">
75         <fieldset class="rows">
76         <input type="hidden" name="op" value="add_validate" />
77         [% IF ( heading_branches_add_branch_p ) %]
78             <input type="hidden" name="add" value="1" />
79         [% ELSE %]
80             <input type="hidden" name="add" value="0" />
81         [% END %]
82         <ol><li>
83             [% IF ( heading_branches_add_branch_p ) %]
84             <label for="branchcode">Library code</label>
85                 <input type="text" name="branchcode" id="branchcode" size="10" maxlength="10" value="[% branchcode |html %]" />
86             [% ELSE %]
87                         <label for="branchcode">Library code</label>
88                 <input type="hidden" name="branchcode" value="[% branchcode |html %]" />
89                 [% branchcode %]
90             [% END %]
91         </li>
92         <li>
93             <label for="branchname">Name</label>
94             <input type="text" name="branchname" id="branchname" size="80" value="[% branch_name |html %]" />&nbsp;
95         </li>
96         </ol>
97         </fieldset>
98         [% IF ( categoryloop ) %]<fieldset class="rows"><legend>Group(s):</legend>
99         <ol>
100                 [% FOREACH categoryloo IN categoryloop %]
101             <li><label for="[% categoryloo.categorycode %]">[% categoryloo.categoryname %]</label>
102                 [% IF ( categoryloo.checked ) %]
103                     <input type="checkbox" id="[% categoryloo.categorycode %]" name="[% categoryloo.categorycode %]" checked="checked" />
104                 [% ELSE %]
105                     <input type="checkbox" id="[% categoryloo.categorycode %]" name="[% categoryloo.categorycode %]" />
106                 [% END %]
107                 <span class="hint">[% categoryloo.codedescription %]</span>
108             </li>
109         [% END %]
110                 </ol>
111 </fieldset>[% END %]
112         <fieldset class="rows">
113         <ol>
114         <li><label for="branchaddress1">Address Line 1</label><input type="text" name="branchaddress1" id="branchaddress1" value="[% branchaddress1 |html %]" /></li>
115         <li><label for="branchaddress2">Address Line 2</label><input type="text" name="branchaddress2" id="branchaddress2" value="[% branchaddress2 |html %]" /></li>
116         <li><label for="branchaddress3">Address Line 3</label><input type="text" name="branchaddress3" id="branchaddress3" value="[% branchaddress3 |html %]" /></li>
117         <li><label for="branchcity">City</label><input type="text" name="branchcity" id="branchcity" value="[% branchcity |html %]" /></li>
118         <li><label for="branchstate">State</label><input type="text" name="branchstate" id="branchstate" value="[% branchstate |html %]" /></li>
119         <li><label for="branchzip">Zip/Postal Code</label><input type="text" name="branchzip" id="branchzip" value="[% branchzip |html %]" /></li>
120         <li><label for="branchcountry">Country</label><input type="text" name="branchcountry" id="branchcountry" value="[% branchcountry |html %]" /></li>
121         <li><label for="branchphone">Phone</label><input type="text" name="branchphone" id="branchphone" value="[% branchphone |html %]" /></li>
122         <li><label for="branchfax">Fax</label><input type="text" name="branchfax" id="branchfax" value="[% branchfax |html %]" /></li>
123         <li><label for="branchemail">Email</label><input type="text" name="branchemail" id="branchemail" value="[% branchemail |html %]" /></li>
124         <li><label for="branchurl">url</label><input type="text" name="branchurl" id="branchurl" value="[% branchurl |html %]" /></li>
125         <li><label for="branchip">IP</label><input type="text" name="branchip" id="branchip" value="[% branchip |html %]" /> <span class="hint">Can be entered as a single IP, or a subnet such as 192.168.1.*</span></li>
126                 <!--
127         <li><label for="branchprinter">Library Printer</label>
128             <select id="branchprinter" name="branchprinter">
129                 <option value="">None</option>
130             [% FOREACH printerloo IN printerloop %]
131                 [% IF ( printerloo.selected ) %]
132                                 <option value="[% printerloo.value %]" selected="selected">[% printerloo.branchprinter %]</option>
133                                 [% ELSE %]
134                                 <option value="[% printerloo.value %]">[% printerloo.branchprinter %]</option>
135                                 [% END %]
136                 [% END %]
137             </select></li>
138                         -->
139         <li><label for="branchnotes">Notes</label><input type="text" name="branchnotes" id="branchnotes" value="[% branchnotes |html %]" /></li>
140         </ol>
141         </fieldset>
142         <fieldset class="action"><input type="submit" value="Submit" /> <a class="cancel" href="/cgi-bin/koha/admin/branches.pl">Cancel</a></fieldset>
143     </form>
144 [% END %]
145
146 [% IF ( delete_confirm ) %]
147     <form action="[% action %]" method="post">
148 <fieldset><legend>Confirm deletion of [% branchname %] ([% branchcode %])?</legend><input type="hidden" name="op" value="delete_confirmed" />
149         <input type="hidden" name="branchcode" value="[% branchcode |html %]" />
150         <input type="hidden" name="branchname" value="[% branchname |html %]">
151         <fieldset class="action"><input type="submit" value="Delete Library" /> <a class="cancel" href="/cgi-bin/koha/admin/branches.pl">Cancel</a></fieldset>
152 </fieldset></form>
153 [% END %]
154
155 [% IF ( else ) %]
156     <h3>Libraries</h3>
157     [% IF ( message ) %]<div class="dialog message">
158         [% message %]</div>[% END %]
159     [% IF ( MESSAGE1 ) %]<div class="dialog message">Library not saved &mdash; code and/or name missing</div>[% END %]
160     [% IF ( MESSAGE2 ) %]<div class="dialog message">Library saved</div>[% END %]
161     [% IF ( MESSAGE3 ) %]<div class="dialog message">Library deleted</div>[% END %]
162     [% IF ( MESSAGE4 ) %]<div class="dialog message">Library category added</div>[% END %]
163     [% IF ( MESSAGE5 ) %]<div class="dialog message">Library category modified</div>[% END %]
164     [% IF ( MESSAGE6 ) %]<div class="dialog message">Library category deleted</div>[% END %]
165     [% IF ( MESSAGE7 ) %]<div class="dialog message">Library cannot be deleted because there are patrons and items using that library</div>[% END %]
166     [% IF ( MESSAGE8 ) %]<div class="dialog message">Category cannot be deleted because there are libraries using that category</div>[% END %]
167     [% IF ( MESSAGE9 ) %]<div class="dialog message">Category cannot be added, categorycode already exists</div>[% END %]
168     [% IF ( MESSAGE10 ) %]<div class="dialog message">Library cannot be deleted because there are items held by that library</div>[% END %]
169     [% IF ( MESSAGE11 ) %]<div class="dialog message">Library cannot be deleted because there are patrons registered at that library</div>[% END %]
170 [% IF ( branches ) %]
171 <span id="pagerbranchest" class="pager">
172         <form class="formpager">&nbsp;<strong>page(s)</strong>&nbsp;:
173                 <img src="[% interface %]/prog/img/first.png" class="first"/>
174                 <img src="[% interface %]/prog/img/prev.png" class="prev"/>
175                 <input type="text" size="5" class="pagedisplay"/>
176                 <img src="[% interface %]/prog/img/next.png" class="next"/>
177                 <img src="[% interface %]/prog/img/last.png" class="last"/>
178                 , entries/page : 
179                 <select class="pagesize">
180                 <option selected="selected" value="10">10</option>
181                         <option value="20">20</option>
182                         <option value="30">30</option>
183                         <option value="40">40</option>
184                         <option value="50">50</option>
185                         <option value="100">100</option>
186                 </select>
187         </form>
188 </span>
189     <table id="branchest">
190 <thead><tr>
191                         <th>Name</th>
192             <th>Code</th>
193             <th>Address</th>
194             <th>Properties</th>
195             <th>IP</th>
196             <!-- <th>Printer</th> -->
197             <th colspan="2">&nbsp;</th>
198         </tr></thead><tbody>
199         [% FOREACH branche IN branches %]
200         [% IF ( loop.odd ) %]
201         <tr>
202         [% ELSE %]
203                 <tr class="highlight">
204         [% END %]
205                 <td>[% branche.branch_name |html %]</td>
206                 <td>[% branche.branch_code |html %]</td>
207                 <td>
208                     [% IF ( branche.address_empty_p ) %]
209                         (nothing entered)
210                     [% ELSE %]
211                         [% IF ( branche.branchaddress1 ) %]
212                             [% branche.branchaddress1 |html %][% END %]
213                         [% IF ( branche.branchaddress2 ) %]
214                             <br />[% branche.branchaddress2 |html %][% END %]
215                         [% IF ( branche.branchaddress3 ) %]
216                             <br />[% branche.branchaddress3 |html %][% END %]
217                         [% IF ( branche.branchcity ) %]
218                             <br />[% branche.branchcity |html %][% END %][% IF ( branche.branchstate ) %],
219                             [% branche.branchstate |html %][% END %]
220                         [% IF ( branche.branchzip ) %]
221                             [% branche.branchzip |html %][% END %]
222                         [% IF ( branche.branchcountry ) %]
223                             <br />[% branche.branchcountry |html %][% END %]
224                         [% IF ( branche.branchphone ) %]
225                             <br />Ph: [% branche.branchphone |html %][% END %]
226                         [% IF ( branche.branchfax ) %]
227                             <br />Fax: [% branche.branchfax |html %][% END %]
228                         [% IF ( branche.branchemail ) %]
229                             <br /><a href="mailto:[% branche.branchemail %]">[% branche.branchemail |html %]</a>[% END %]
230                         [% IF ( branche.branchurl ) %]
231                             <br /><a href="[% branche.branchurl %]">[% branche.branchurl |html %]</a>[% END %]
232                         [% IF ( branche.branchnotes ) %]
233                             <br />Notes: [% branche.branchnotes |html %][% END %]
234                     [% END %]
235                 </td>
236                 <td>
237                     [% UNLESS ( branche.no_categories_p ) %]
238                         [% FOREACH category_lis IN branche.category_list %]
239                             [% category_lis.categoryname %]<br />
240                         [% END %]
241                     [% END %]
242                 </td>
243                 <td>
244                     [% branche.branchip %]
245                 </td>
246                 <!-- <td>
247                     [% branche.branchprinter %]
248                 </td> -->
249                 <td>
250                     <a href="[% branche.action %]?op=edit&amp;branchcode=[% branche.value |url %]">Edit</a>
251                 </td>
252                 <td>
253                     <a href="[% branche.action %]?branchcode=[% branche.value |url %]&amp;branchname=[% branche.branch_name |url %]&amp;op=delete">Delete</a>
254                 </td>
255             </tr>
256         [% END %]</tbody>
257     </table>
258         [% ELSE %]
259         <div class="dialog message">There are no libraries defined. <a href="/cgi-bin/koha/admin/branches.pl?op=add">Start defining libraries</a>.</div>
260         [% END %]
261     
262    [% IF ( branchcategories ) %]
263    [% FOREACH branchcategorie IN branchcategories %]
264     <h3>Group(s):  [% IF ( branchcategorie.properties ) %]Properties[% ELSE %][% IF ( branchcategorie.searchdomain ) %]Search Domain[% END %][% END %]</h3>
265         <table>
266     <tr>
267         <th>Name</th>
268         <th>Code</th>
269         <th>Description</th>
270         <th>&nbsp;</th>
271         <th>&nbsp;</th>
272     </tr>
273 [% IF ( branchcategorie.catloop ) %][% FOREACH catloo IN branchcategorie.catloop %]
274         <tr>
275         <td>[% catloo.categoryname %]</td>
276         <td>[% catloo.categorycode %]</td>
277         <td>[% catloo.codedescription %]</td>
278         <td><a href="[% catloo.action %]?op=editcategory&amp;categorycode=[% catloo.categorycode |url %]">Edit</a>
279         </td>
280         <td><a href="[% catloo.action %]?op=delete_category&amp;categorycode=[% catloo.categorycode |url %]">Delete</a>
281         </td>
282         </tr>
283     [% END %][% ELSE %]<tr><td colspan="5">No [% IF ( branchcategorie.properties ) %]Properties[% ELSIF ( branchcategorie.searchdomain ) %]Search Domain[% END %] Defined</td></tr>[% END %]
284     </table>
285     [% END %]
286     [% ELSE %]
287         <p>No Groups defined.</p>
288     [% END %] <!-- NAME="branchcategories" -->
289 [% END %]
290
291 [% IF ( editcategory ) %]
292     <h3>[% IF ( categorycode ) %]Edit Group [% categorycode %][% ELSE %]Add Group[% END %]</h3>
293     <form action="[% action %]" name="Aform" method="post">
294     <input type="hidden" name="op" value="addcategory_validate" />
295         [% IF ( categorycode ) %]
296         <input type="hidden" name="add" value="0">
297         [% ELSE %]
298         <input type="hidden" name="add" value="1">
299         [% END %]
300     <fieldset class="rows">
301         
302         <ol><li>
303                 [% IF ( categorycode ) %]
304                                 <span class="label">Category code: </span>
305                     <input type="hidden" name="categorycode" id="categorycode" value="[% categorycode |html %]" />
306                     [% categorycode %]
307                 [% ELSE %]
308                 <label for="categorycode">Category code:</label>
309                     <input type="text" name="categorycode" id="categorycode" size="10" maxlength="10" value="[% categorycode |html %]" />
310                 [% END %]
311             </li>
312         <li>
313             <label for="categoryname">Name: </label>
314             <input type="text" name="categoryname" id="categoryname" size="32" maxlength="32" value="[% categoryname |html %]" />
315         </li>
316         <li>
317             <label for="codedescription">Description: </label>
318             <input type="text" name="codedescription" id="codedescription" size="70" value="[% codedescription |html %]" />
319         </li>
320                 <li>
321                 <label for="categorytype">Category Type: </label>
322             <select id="categorytype" name="categorytype">
323             [% FOREACH categorytyp IN categorytype %]
324                 [% IF ( categorytyp.selected ) %]
325                     <option value="[% categorytyp.type %]" selected="selected">
326                 [% ELSE %]
327                     <option value="[% categorytyp.type %]">
328                 [% END %] [% categorytyp.type %]</option>
329             [% END %]
330             </select>
331                 </li>
332                 </ol>
333     </fieldset>
334         <fieldset class="action"><input type="submit" value="Update" /></fieldset>
335     </form>
336 [% END %]
337
338 [% IF ( delete_category ) %]
339     [% UNLESS ( MESSAGE8 ) %]
340     <div class="dialog message"> 
341     Confirm delete:
342     <form action="[% action %]" method="post">
343         <input type="hidden" name="op" value="categorydelete_confirmed" />
344         <input type="hidden" name="categorycode" value="[% categorycode |html %]" />
345         <input type="submit" value="YES" />
346     </form>
347     <form action="[% action %]" method="post"><input type="hidden" name="op" value="">
348         <input type="submit" value="NO" />
349     </form>
350     </div>
351     [% END %]
352 [% END %]
353
354 </div>
355 </div>
356 <div class="yui-b">
357 [% INCLUDE 'admin-menu.inc' %]
358 </div>
359 </div>
360 [% INCLUDE 'intranet-bottom.inc' %]