Bug 10790: fix misalignment in item type form when noItemTypeImages is off
[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         [% IF ( loop.odd ) %]
190         <tr>
191         [% ELSE %]
192                 <tr class="highlight">
193         [% END %]
194                 <td>[% branche.branch_name |html %]</td>
195                 <td>[% branche.branch_code |html %]</td>
196                 <td>
197                     [% IF ( branche.address_empty_p ) %]
198                         (nothing entered)
199                     [% ELSE %]
200                         [% IF ( branche.branchaddress1 ) %]
201                             [% branche.branchaddress1 |html %][% END %]
202                         [% IF ( branche.branchaddress2 ) %]
203                             <br />[% branche.branchaddress2 |html %][% END %]
204                         [% IF ( branche.branchaddress3 ) %]
205                             <br />[% branche.branchaddress3 |html %][% END %]
206                         [% IF ( branche.branchcity ) %]
207                             <br />[% branche.branchcity |html %][% END %][% IF ( branche.branchstate ) %],
208                             [% branche.branchstate |html %][% END %]
209                         [% IF ( branche.branchzip ) %]
210                             [% branche.branchzip |html %][% END %]
211                         [% IF ( branche.branchcountry ) %]
212                             <br />[% branche.branchcountry |html %][% END %]
213                         [% IF ( branche.branchphone ) %]
214                             <br />Ph: [% branche.branchphone |html %][% END %]
215                         [% IF ( branche.branchfax ) %]
216                             <br />Fax: [% branche.branchfax |html %][% END %]
217                         [% IF ( branche.branchemail ) %]
218                             <br /><a href="mailto:[% branche.branchemail %]">[% branche.branchemail |html %]</a>[% END %]
219                         [% IF ( branche.branchurl ) %]
220                             <br /><a href="[% branche.branchurl %]">[% branche.branchurl |html %]</a>[% END %]
221                         [% IF ( branche.opac_info ) %]
222                             <br />OPAC Info: <div>[% branche.opac_info %]</div>[% END %]
223                         [% IF ( branche.branchnotes ) %]
224                             <br />Notes: [% branche.branchnotes |html %][% END %]
225                     [% END %]
226                 </td>
227                 <td>
228                     [% UNLESS ( branche.no_categories_p ) %]
229                         [% FOREACH category_lis IN branche.category_list %]
230                             [% category_lis.categoryname %]<br />
231                         [% END %]
232                     [% END %]
233                 </td>
234                 <td>
235                     [% branche.branchip %]
236                 </td>
237                 <!-- <td>
238                     [% branche.branchprinter %]
239                 </td> -->
240                 <td>
241                     <a href="[% branche.action %]?op=edit&amp;branchcode=[% branche.value |url %]">Edit</a>
242                 </td>
243                 <td>
244                     <a href="[% branche.action %]?branchcode=[% branche.value |url %]&amp;branchname=[% branche.branch_name |url %]&amp;op=delete">Delete</a>
245                 </td>
246             </tr>
247         [% END %]</tbody>
248     </table>
249         [% ELSE %]
250         <div class="dialog message">There are no libraries defined. <a href="/cgi-bin/koha/admin/branches.pl?op=add">Start defining libraries</a>.</div>
251         [% END %]
252     
253    [% IF ( branchcategories ) %]
254    [% FOREACH branchcategorie IN branchcategories %]
255     <h3>Group(s):  [% IF ( branchcategorie.properties ) %]Properties[% ELSE %][% IF ( branchcategorie.searchdomain ) %]Search domain[% END %][% END %]</h3>
256     [% IF ( branchcategorie.catloop ) %]
257       <table>
258         <thead>
259           <tr>
260             <th>Name</th>
261             <th>Code</th>
262             <th>Description</th>
263             <th>&nbsp;</th>
264             <th>&nbsp;</th>
265           </tr>
266         </thead>
267         <tbody>
268           [% FOREACH catloo IN branchcategorie.catloop %]
269             <tr>
270               <td>[% catloo.categoryname %]</td>
271               <td>[% catloo.categorycode %]</td>
272               <td>[% catloo.codedescription %]</td>
273               <td>
274                 <a href="[% catloo.action %]?op=editcategory&amp;categorycode=[% catloo.categorycode |url %]">Edit</a>
275               </td>
276               <td>
277                 <a href="[% catloo.action %]?op=delete_category&amp;categorycode=[% catloo.categorycode |url %]">Delete</a>
278               </td>
279             </tr>
280           [% END %]
281         </tbody>
282       </table>
283     [% ELSE %]
284       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>.
285     [% END %]
286   [% END %]
287   [% ELSE %]
288     <p>No groups defined.</p>
289   [% END %] <!-- NAME="branchcategories" -->
290 [% END %]
291
292 [% IF ( editcategory ) %]
293     <h3>[% IF ( categorycode ) %]Edit group [% categorycode %][% ELSE %]Add group[% END %]</h3>
294     <form action="[% action %]" name="Aform" method="post">
295     <input type="hidden" name="op" value="addcategory_validate" />
296         [% IF ( categorycode ) %]
297         <input type="hidden" name="add" value="0">
298         [% ELSE %]
299         <input type="hidden" name="add" value="1">
300         [% END %]
301     <fieldset class="rows">
302         
303         <ol><li>
304                 [% IF ( categorycode ) %]
305                                 <span class="label">Category code: </span>
306                     <input type="hidden" name="categorycode" id="categorycode" value="[% categorycode |html %]" />
307                     [% categorycode %]
308                 [% ELSE %]
309                 <label for="categorycode">Category code:</label>
310                     <input type="text" name="categorycode" id="categorycode" size="10" maxlength="10" value="[% categorycode |html %]" />
311                 [% END %]
312             </li>
313         <li>
314             <label for="categoryname">Name: </label>
315             <input type="text" name="categoryname" id="categoryname" size="32" maxlength="32" value="[% categoryname |html %]" />
316         </li>
317         <li>
318             <label for="codedescription">Description: </label>
319             <input type="text" name="codedescription" id="codedescription" size="70" value="[% codedescription |html %]" />
320         </li>
321                 <li>
322         <label for="categorytype">Category type: </label>
323             <select id="categorytype" name="categorytype">
324             [% FOREACH categorytyp IN categorytype %]
325                 [% IF ( categorytyp.selected ) %]
326                     <option value="[% categorytyp.type %]" selected="selected">
327                 [% ELSE %]
328                     <option value="[% categorytyp.type %]">
329                 [% END %] [% categorytyp.type %]</option>
330             [% END %]
331             </select>
332                 </li>
333         <li>
334             <label for="show_in_pulldown">Show in search pulldown: </label>
335             [% IF ( show_in_pulldown ) %]
336                 <input type="checkbox" name="show_in_pulldown" id="show_in_pulldown" checked="checked"/>
337             [% ELSE %]
338                 <input type="checkbox" name="show_in_pulldown" id="show_in_pulldown" />
339             [% END %]
340         </li>
341                 </ol>
342     </fieldset>
343         <fieldset class="action"><input type="submit" value="Update" /></fieldset>
344     </form>
345 [% END %]
346
347 [% IF ( delete_category ) %]
348     [% UNLESS ( MESSAGE8 ) %]
349     <div class="dialog message"> 
350     Confirm delete:
351     <form action="[% action %]" method="post">
352         <input type="hidden" name="op" value="categorydelete_confirmed" />
353         <input type="hidden" name="categorycode" value="[% categorycode |html %]" />
354         <input type="submit" value="YES" />
355     </form>
356     <form action="[% action %]" method="post"><input type="hidden" name="op" value="">
357         <input type="submit" value="NO" />
358     </form>
359     </div>
360     [% END %]
361 [% END %]
362
363 </div>
364 </div>
365 <div class="yui-b">
366 [% INCLUDE 'admin-menu.inc' %]
367 </div>
368 </div>
369 [% INCLUDE 'intranet-bottom.inc' %]