Bug 2889 - templates should use [% IF ( loop.odd ) %] - Administration
[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 <link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" />
15 [% INCLUDE 'datatables.inc' %]
16 <script type="text/javascript" src="[% interface %]/lib/tiny_mce/tiny_mce.js"></script>
17 <script type="text/javascript">
18 //<![CDATA[
19     $(document).ready(function() {
20         $("#branchest").dataTable($.extend(true, {}, dataTablesDefaults, {
21             "aoColumnDefs": [
22                 { "aTargets": [ -1, -2 ], "bSortable": false, "bSearchable": false },
23             ],
24             "iDisplayLength": 10,
25             "sPaginationType": "four_button"
26         }));
27     });
28 tinyMCE.init({
29     mode : "textareas",
30     theme : "advanced",
31     content_css : "[% themelang %]/css/tinymce.css",
32     plugins : "table,save,advhr,advlink,contextmenu",
33     theme_advanced_buttons1 : "save,|,bold,italic,|,cut,copy,paste,|,justifyleft,justifycenter,justifyright,justifyfull,|,formatselect,|,link,unlink,anchor,cleanup,help,code,advhr,",
34     theme_advanced_buttons2 : "tablecontrols,|,bullist,numlist,|,outdent,indent,|,undo,redo,|,removeformat,|,visualaid,|,sub,sup,|,charmap",
35     // theme_advanced_buttons3 : "",
36     theme_advanced_toolbar_location : "top",
37     theme_advanced_toolbar_align : "left",
38     theme_advanced_path_location : "bottom",
39     theme_advanced_resizing : true,
40     apply_source_formatting : true
41 });
42 //]]>
43 </script>
44 </head>
45 <body id="admin_branches" class="admin">
46 [% INCLUDE 'header.inc' %]
47 [% INCLUDE 'cat-search.inc' %]
48
49 <div id="breadcrumbs">
50     <a href="/cgi-bin/koha/mainpage.pl">Home</a>
51 &rsaquo; <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a>
52 &rsaquo; <a href="/cgi-bin/koha/admin/branches.pl">Libraries and groups</a>
53 [% IF ( editcategory ) %]
54 &rsaquo; [% IF ( categorycode ) %]Edit group [% categorycode %][% ELSE %]New group[% END %]
55 [% ELSIF ( delete_category ) %]
56 &rsaquo; Confirm deletion of group [% categorycode %]
57 [% ELSIF ( add ) %]
58 &rsaquo; [% IF ( heading_branches_add_branch_p ) %]New library[% ELSE %]Modify library [% branchcode %][% END %]
59 [% ELSIF ( delete_confirm ) %]
60 &rsaquo; Confirm deletion of library '[% branchcode %]'
61 [% END %]
62 </div>
63
64 <div id="doc3" class="yui-t2">
65    
66    <div id="bd">
67         <div id="yui-main">
68         <div class="yui-b">
69         [% IF ( else ) %]
70     <div id="toolbar" class="btn-toolbar">
71         <a class="btn btn-small" id="newbranch" href="/cgi-bin/koha/admin/branches.pl?op=add"><i class="icon-plus"></i> New library</a>
72         <a class="btn btn-small" id="newcategory" href="/cgi-bin/koha/admin/branches.pl?op=editcategory"><i class="icon-plus"></i> New group</a>
73     </div>
74 [% END %]
75
76 [% IF ( add ) %]
77     [% IF ( ERROR1 ) %]<div class="dialog message">Library with that code already exists &mdash; Please enter a unique code</div>[% END %]
78   <h3>[% IF ( heading_branches_add_branch_p ) %]New library[% ELSE %]Modify library[% END %]</h3>
79     <form action="[% action %]" id="Aform" name="Aform" class="validated" method="post">
80         <fieldset class="rows">
81         <input type="hidden" name="op" value="add_validate" />
82         [% IF ( heading_branches_add_branch_p ) %]
83             <input type="hidden" name="add" value="1" />
84         [% ELSE %]
85             <input type="hidden" name="add" value="0" />
86         [% END %]
87         <ol><li>
88             [% IF ( heading_branches_add_branch_p ) %]
89             <label for="branchcode" class="required">Library code: </label>
90                 <input type="text" name="branchcode" id="branchcode" size="10" maxlength="10" value="[% branchcode |html %]" class="required" required="required" /> <span class="required">Required</span>
91             [% ELSE %]
92             <span class="label">Library code: </span>
93                 <input type="hidden" name="branchcode" value="[% branchcode |html %]" />
94                 [% branchcode %]
95             [% END %]
96         </li>
97         <li>
98             <label for="branchname" class="required">Name: </label>
99             <input type="text" name="branchname" id="branchname" size="80" value="[% branch_name |html %]" class="required" required="required" /> <span class="required">Required</span>
100         </li>
101         </ol>
102         </fieldset>
103         [% IF ( categoryloop ) %]<fieldset class="rows"><legend>Group(s):</legend>
104         <ol>
105                 [% FOREACH categoryloo IN categoryloop %]
106             <li><label for="[% categoryloo.categorycode %]">[% categoryloo.categoryname %]: </label>
107                 [% IF categoryloo.selected %]
108                     <input type="checkbox" id="[% categoryloo.categorycode %]" name="[% categoryloo.categorycode %]" checked="checked" />
109                 [% ELSE %]
110                     <input type="checkbox" id="[% categoryloo.categorycode %]" name="[% categoryloo.categorycode %]" />
111                 [% END %]
112                 <span class="hint">[% categoryloo.codedescription %]</span>
113             </li>
114         [% END %]
115                 </ol>
116 </fieldset>[% END %]
117         <fieldset class="rows">
118         <ol>
119         <li><label for="branchaddress1">Address line 1: </label><input type="text" name="branchaddress1" id="branchaddress1" size="60" value="[% branchaddress1 |html %]" /></li>
120         <li><label for="branchaddress2">Address line 2: </label><input type="text" name="branchaddress2" id="branchaddress2" size="60" value="[% branchaddress2 |html %]" /></li>
121         <li><label for="branchaddress3">Address line 3: </label><input type="text" name="branchaddress3" id="branchaddress3" size="60" value="[% branchaddress3 |html %]" /></li>
122         <li><label for="branchcity">City: </label><input type="text" name="branchcity" id="branchcity" size="60" value="[% branchcity |html %]" /></li>
123         <li><label for="branchstate">State: </label><input type="text" name="branchstate" id="branchstate" size="60" value="[% branchstate |html %]" /></li>
124         <li><label for="branchzip">Zip/Postal code: </label><input type="text" name="branchzip" id="branchzip"  size="25" maxlength="25" value="[% branchzip |html %]" /></li>
125         <li><label for="branchcountry">Country: </label><input type="text" name="branchcountry" id="branchcountry" size="60" value="[% branchcountry |html %]" /></li>
126         <li><label for="branchphone">Phone: </label><input type="text" name="branchphone" id="branchphone" size="60" value="[% branchphone |html %]" /></li>
127         <li><label for="branchfax">Fax: </label><input type="text" name="branchfax" id="branchfax" size="60" value="[% branchfax |html %]" /></li>
128         <li><label for="branchemail">Email: </label><input type="text" name="branchemail" id="branchemail" class="email"  size="80" value="[% branchemail |html %]" /></li>
129         <li><label for="branchurl">URL: </label><input type="text" name="branchurl" id="branchurl"  size="80" value="[% branchurl |html %]" class="url" /></li>
130         <li><label for="opac_info">OPAC info: </label><textarea name="opac_info" id="opac_info">[% opac_info |html %]</textarea></li>
131         <li><label for="branchip">IP: </label><input type="text" name="branchip" id="branchip"  size="15" maxlength="15" value="[% branchip |html %]" /> <span class="hint">Can be entered as a single IP, or a subnet such as 192.168.1.*</span></li>
132                 <!--
133         <li><label for="branchprinter">Library Printer: </label>
134             <select id="branchprinter" name="branchprinter">
135                 <option value="">None</option>
136             [% FOREACH printerloo IN printerloop %]
137                 [% IF ( printerloo.selected ) %]
138                                 <option value="[% printerloo.value %]" selected="selected">[% printerloo.branchprinter %]</option>
139                                 [% ELSE %]
140                                 <option value="[% printerloo.value %]">[% printerloo.branchprinter %]</option>
141                                 [% END %]
142                 [% END %]
143             </select></li>
144                         -->
145         <li><label for="branchnotes">Notes: </label><input type="text" name="branchnotes" id="branchnotes" size="80" value="[% branchnotes |html %]" /></li>
146         </ol>
147         </fieldset>
148         <fieldset class="action"><input type="submit" value="Submit" /> <a class="cancel" href="/cgi-bin/koha/admin/branches.pl">Cancel</a></fieldset>
149     </form>
150 [% END %]
151
152 [% IF ( delete_confirm ) %]
153     <form action="[% action %]" method="post">
154 <fieldset><legend>Confirm deletion of [% branchname %] ([% branchcode %])?</legend><input type="hidden" name="op" value="delete_confirmed" />
155         <input type="hidden" name="branchcode" value="[% branchcode |html %]" />
156         <input type="hidden" name="branchname" value="[% branchname |html %]">
157         <fieldset class="action"><input type="submit" value="Delete Library" /> <a class="cancel" href="/cgi-bin/koha/admin/branches.pl">Cancel</a></fieldset>
158 </fieldset></form>
159 [% END %]
160
161 [% IF ( else ) %]
162     <h3>Libraries</h3>
163     [% IF ( message ) %]<div class="dialog message">
164         [% message %]</div>[% END %]
165     [% IF ( MESSAGE1 ) %]<div class="dialog message">Library not saved &mdash; code and/or name missing</div>[% END %]
166     [% IF ( MESSAGE2 ) %]<div class="dialog message">Library saved</div>[% END %]
167     [% IF ( MESSAGE3 ) %]<div class="dialog message">Library deleted</div>[% END %]
168     [% IF ( MESSAGE4 ) %]<div class="dialog message">Library category added</div>[% END %]
169     [% IF ( MESSAGE5 ) %]<div class="dialog message">Library category modified</div>[% END %]
170     [% IF ( MESSAGE6 ) %]<div class="dialog message">Library category deleted</div>[% END %]
171     [% IF ( MESSAGE7 ) %]<div class="dialog message">Library cannot be deleted because there are patrons and items using that library</div>[% END %]
172     [% IF ( MESSAGE8 ) %]<div class="dialog message">Category cannot be deleted because there are libraries using that category</div>[% END %]
173     [% IF ( MESSAGE9 ) %]<div class="dialog message">Category cannot be added, categorycode already exists</div>[% END %]
174     [% IF ( MESSAGE10 ) %]<div class="dialog message">Library cannot be deleted because there are items held by that library</div>[% END %]
175     [% IF ( MESSAGE11 ) %]<div class="dialog message">Library cannot be deleted because there are patrons registered at that library</div>[% END %]
176 [% IF ( branches ) %]
177     <table id="branchest">
178 <thead><tr>
179                         <th>Name</th>
180             <th>Code</th>
181             <th>Address</th>
182             <th>Properties</th>
183             <th>IP</th>
184             <!-- <th>Printer</th> -->
185             <th>&nbsp;</th>
186             <th>&nbsp;</th>
187         </tr></thead><tbody>
188         [% FOREACH branche IN branches %]
189             <tr>
190                 <td>[% branche.branch_name |html %]</td>
191                 <td>[% branche.branch_code |html %]</td>
192                 <td>
193                     [% IF ( branche.address_empty_p ) %]
194                         (nothing entered)
195                     [% ELSE %]
196                         [% IF ( branche.branchaddress1 ) %]
197                             [% branche.branchaddress1 |html %][% END %]
198                         [% IF ( branche.branchaddress2 ) %]
199                             <br />[% branche.branchaddress2 |html %][% END %]
200                         [% IF ( branche.branchaddress3 ) %]
201                             <br />[% branche.branchaddress3 |html %][% END %]
202                         [% IF ( branche.branchcity ) %]
203                             <br />[% branche.branchcity |html %][% END %][% IF ( branche.branchstate ) %],
204                             [% branche.branchstate |html %][% END %]
205                         [% IF ( branche.branchzip ) %]
206                             [% branche.branchzip |html %][% END %]
207                         [% IF ( branche.branchcountry ) %]
208                             <br />[% branche.branchcountry |html %][% END %]
209                         [% IF ( branche.branchphone ) %]
210                             <br />Ph: [% branche.branchphone |html %][% END %]
211                         [% IF ( branche.branchfax ) %]
212                             <br />Fax: [% branche.branchfax |html %][% END %]
213                         [% IF ( branche.branchemail ) %]
214                             <br /><a href="mailto:[% branche.branchemail %]">[% branche.branchemail |html %]</a>[% END %]
215                         [% IF ( branche.branchurl ) %]
216                             <br /><a href="[% branche.branchurl %]">[% branche.branchurl |html %]</a>[% END %]
217                         [% IF ( branche.opac_info ) %]
218                             <br />OPAC Info: <div>[% branche.opac_info %]</div>[% END %]
219                         [% IF ( branche.branchnotes ) %]
220                             <br />Notes: [% branche.branchnotes |html %][% END %]
221                     [% END %]
222                 </td>
223                 <td>
224                     [% UNLESS ( branche.no_categories_p ) %]
225                         [% FOREACH category_lis IN branche.category_list %]
226                             [% category_lis.categoryname %]<br />
227                         [% END %]
228                     [% END %]
229                 </td>
230                 <td>
231                     [% branche.branchip %]
232                 </td>
233                 <!-- <td>
234                     [% branche.branchprinter %]
235                 </td> -->
236                 <td>
237                     <a href="[% branche.action %]?op=edit&amp;branchcode=[% branche.value |url %]">Edit</a>
238                 </td>
239                 <td>
240                     <a href="[% branche.action %]?branchcode=[% branche.value |url %]&amp;branchname=[% branche.branch_name |url %]&amp;op=delete">Delete</a>
241                 </td>
242             </tr>
243         [% END %]</tbody>
244     </table>
245         [% ELSE %]
246         <div class="dialog message">There are no libraries defined. <a href="/cgi-bin/koha/admin/branches.pl?op=add">Start defining libraries</a>.</div>
247         [% END %]
248     
249    [% IF ( branchcategories ) %]
250    [% FOREACH branchcategorie IN branchcategories %]
251     <h3>Group(s):  [% IF ( branchcategorie.properties ) %]Properties[% ELSE %][% IF ( branchcategorie.searchdomain ) %]Search domain[% END %][% END %]</h3>
252     [% IF ( branchcategorie.catloop ) %]
253       <table>
254         <thead>
255           <tr>
256             <th>Name</th>
257             <th>Code</th>
258             <th>Description</th>
259             <th>&nbsp;</th>
260             <th>&nbsp;</th>
261           </tr>
262         </thead>
263         <tbody>
264           [% FOREACH catloo IN branchcategorie.catloop %]
265             <tr>
266               <td>[% catloo.categoryname %]</td>
267               <td>[% catloo.categorycode %]</td>
268               <td>[% catloo.codedescription %]</td>
269               <td>
270                 <a href="[% catloo.action %]?op=editcategory&amp;categorycode=[% catloo.categorycode |url %]">Edit</a>
271               </td>
272               <td>
273                 <a href="[% catloo.action %]?op=delete_category&amp;categorycode=[% catloo.categorycode |url %]">Delete</a>
274               </td>
275             </tr>
276           [% END %]
277         </tbody>
278       </table>
279     [% ELSE %]
280       No [% IF ( branchcategorie.properties ) %]properties[% ELSIF ( branchcategorie.searchdomain ) %]search domain[% END %] defined. <a href="/cgi-bin/koha/admin/branches.pl?op=editcategory">Add a new group</a>.
281     [% END %]
282   [% END %]
283   [% ELSE %]
284     <p>No groups defined.</p>
285   [% END %] <!-- NAME="branchcategories" -->
286 [% END %]
287
288 [% IF ( editcategory ) %]
289     <h3>[% IF ( categorycode ) %]Edit group [% categorycode %][% ELSE %]Add group[% END %]</h3>
290     <form action="[% action %]" name="Aform" method="post">
291     <input type="hidden" name="op" value="addcategory_validate" />
292         [% IF ( categorycode ) %]
293         <input type="hidden" name="add" value="0">
294         [% ELSE %]
295         <input type="hidden" name="add" value="1">
296         [% END %]
297     <fieldset class="rows">
298         
299         <ol><li>
300                 [% IF ( categorycode ) %]
301                                 <span class="label">Category code: </span>
302                     <input type="hidden" name="categorycode" id="categorycode" value="[% categorycode |html %]" />
303                     [% categorycode %]
304                 [% ELSE %]
305                 <label for="categorycode">Category code:</label>
306                     <input type="text" name="categorycode" id="categorycode" size="10" maxlength="10" value="[% categorycode |html %]" />
307                 [% END %]
308             </li>
309         <li>
310             <label for="categoryname">Name: </label>
311             <input type="text" name="categoryname" id="categoryname" size="32" maxlength="32" value="[% categoryname |html %]" />
312         </li>
313         <li>
314             <label for="codedescription">Description: </label>
315             <input type="text" name="codedescription" id="codedescription" size="70" value="[% codedescription |html %]" />
316         </li>
317                 <li>
318         <label for="categorytype">Category type: </label>
319             <select id="categorytype" name="categorytype">
320             [% FOREACH categorytyp IN categorytype %]
321                 [% IF ( categorytyp.selected ) %]
322                     <option value="[% categorytyp.type %]" selected="selected">
323                 [% ELSE %]
324                     <option value="[% categorytyp.type %]">
325                 [% END %] [% categorytyp.type %]</option>
326             [% END %]
327             </select>
328                 </li>
329         <li>
330             <label for="show_in_pulldown">Show in search pulldown: </label>
331             [% IF ( show_in_pulldown ) %]
332                 <input type="checkbox" name="show_in_pulldown" id="show_in_pulldown" checked="checked"/>
333             [% ELSE %]
334                 <input type="checkbox" name="show_in_pulldown" id="show_in_pulldown" />
335             [% END %]
336         </li>
337                 </ol>
338     </fieldset>
339         <fieldset class="action"><input type="submit" value="Update" /></fieldset>
340     </form>
341 [% END %]
342
343 [% IF ( delete_category ) %]
344     [% UNLESS ( MESSAGE8 ) %]
345     <div class="dialog message"> 
346     Confirm delete:
347     <form action="[% action %]" method="post">
348         <input type="hidden" name="op" value="categorydelete_confirmed" />
349         <input type="hidden" name="categorycode" value="[% categorycode |html %]" />
350         <input type="submit" value="YES" />
351     </form>
352     <form action="[% action %]" method="post"><input type="hidden" name="op" value="">
353         <input type="submit" value="NO" />
354     </form>
355     </div>
356     [% END %]
357 [% END %]
358
359 </div>
360 </div>
361 <div class="yui-b">
362 [% INCLUDE 'admin-menu.inc' %]
363 </div>
364 </div>
365 [% INCLUDE 'intranet-bottom.inc' %]