Bug 13618: Specific for branches.opac_info
[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 op == 'editcategory' %]
4     &rsaquo;[% IF category.categorycode %]Edit group [% category.categorycode%][% ELSE %]New group[% END %]
5 [% ELSIF op == 'delete_confirm_category' %]
6     &rsaquo; Confirm deletion of group [% category.categorycode %]
7 [% ELSIF op == 'add_form' %]
8     &rsaquo;[% IF library %]Modify library[% ELSE %]New library [% library.branchcode %][% END %]
9 [% ELSIF op == 'delete_confirm' %]
10     &rsaquo; Confirm deletion of library '[% 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         [% UNLESS library %]
29             $("#Aform").on("submit", function( event ) {
30                 if ( $("#branchcode").val().match(/\s/) ) {
31                     event.preventDefault();
32                     alert(_("The library code entered contains whitespace characters. Please remove any whitespace characters from the library code"));
33                     return false;
34                 } else {
35                     return true;
36                 }
37             });
38         [% END %]
39     });
40 tinyMCE.init({
41     mode : "textareas",
42     theme : "advanced",
43     content_css : "[% themelang %]/css/tinymce.css",
44     plugins : "table,save,advhr,advlink,contextmenu",
45     theme_advanced_buttons1 : "save,|,bold,italic,|,cut,copy,paste,|,justifyleft,justifycenter,justifyright,justifyfull,|,formatselect,|,link,unlink,anchor,cleanup,help,code,advhr,",
46     theme_advanced_buttons2 : "tablecontrols,|,bullist,numlist,|,outdent,indent,|,undo,redo,|,removeformat,|,visualaid,|,sub,sup,|,charmap",
47     // theme_advanced_buttons3 : "",
48     theme_advanced_toolbar_location : "top",
49     theme_advanced_toolbar_align : "left",
50     theme_advanced_path_location : "bottom",
51     theme_advanced_resizing : true,
52     apply_source_formatting : true
53 });
54 //]]>
55 </script>
56 </head>
57 <body id="admin_branches" class="admin">
58 [% INCLUDE 'header.inc' %]
59 [% INCLUDE 'cat-search.inc' %]
60
61 <div id="breadcrumbs">
62     <a href="/cgi-bin/koha/mainpage.pl">Home</a>
63 &rsaquo; <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a>
64 &rsaquo; <a href="/cgi-bin/koha/admin/branches.pl">Libraries and groups</a>
65 [% IF op == 'add_form_category' %]
66 &rsaquo; [% IF category.categorycode %]Edit group [% category.categorycode %][% ELSE %]New group[% END %]
67 [% ELSIF op == 'delete_confirm_category' %]
68 &rsaquo; Confirm deletion of group [% category.categorycode %]
69 [% ELSIF op == 'add_form'  %]
70 &rsaquo; [% IF library %]Modify library[% ELSE %]New library [% library.branchcode %][% END %]
71 [% ELSIF op == 'delete_confirm' %]
72 &rsaquo; Confirm deletion of library '[% library.branchcode %]'
73 [% END %]
74 </div>
75
76 <div id="doc3" class="yui-t2">
77
78    <div id="bd">
79     <div id="yui-main">
80     <div class="yui-b">
81
82 [% FOR m IN messages %]
83     <div class="dialog [% m.type %]">
84         [% SWITCH m.code %]
85         [% CASE 'error_on_update' %]
86             An error occurred when updating this library. Perhaps it already exists.
87         [% CASE 'error_on_insert' %]
88             An error occurred when adding this library. The branchcode might already exist.
89         [% CASE 'error_on_delete' %]
90             An error occurred when deleting this library. Check the logs.
91         [% CASE 'success_on_update' %]
92             Library updated successfully.
93         [% CASE 'success_on_insert' %]
94             Library added successfully.
95         [% CASE 'success_on_delete' %]
96             Library deleted successfully.
97         [% CASE 'cannot_delete_library' %]
98             This library cannot be deleted. Patrons or items are still using it
99             [% IF m.data.patrons_count and m.data.items_count %]
100                 ([% m.data.patrons_count %] patrons and [% m.data.items_count %] items).
101             [% ELSIF m.data.patrons_count %]
102                 ([% m.data.patrons_count %] patrons).
103             [% ELSIF m.data.items_count %]
104                 ([% m.data.items_count %] items).
105             [% END %]
106         [% CASE 'error_on_update_category' %]
107             An error occurred when updating this library category. Perhaps it already exists.
108         [% CASE 'error_on_insert_category' %]
109             An error occurred when adding this library category. The categorycode might already exist.
110         [% CASE 'error_on_delete_category' %]
111             An error occurred when deleting this library category. Check the logs.
112         [% CASE 'success_on_update_category' %]
113             Library category updated successfully.
114         [% CASE 'success_on_insert_category' %]
115             Library category added successfully.
116         [% CASE 'success_on_delete_category' %]
117             Library category deleted successfully.
118         [% CASE 'cannot_delete_category' %]
119             This library category cannot be deleted. [% m.data.libraries_count %] libraries are still using it.
120         [% CASE %]
121             [% m.code %]
122         [% END %]
123     </div>
124 [% END %]
125
126 [% IF op == 'list' %]
127     <div id="toolbar" class="btn-toolbar">
128         <a class="btn btn-small" id="newbranch" href="/cgi-bin/koha/admin/branches.pl?op=add_form"><i class="fa fa-plus"></i> New library</a>
129         <a class="btn btn-small" id="newcategory" href="/cgi-bin/koha/admin/branches.pl?op=add_form_category"><i class="fa fa-plus"></i> New group</a>
130     </div>
131 [% END %]
132
133 [% IF op == 'add_form' %]
134     <h3>[% IF library %]Modify library[% ELSE %]New library[% END %]</h3>
135     <form action="/cgi-bin/koha/admin/branches.pl" id="Aform" name="Aform" class="validated" method="post">
136         <fieldset class="rows">
137             <input type="hidden" name="op" value="add_validate" />
138             [% IF library %]
139                 <input type="hidden" name="is_a_modif" value="1" />
140             [% END %]
141             <ol>
142                 <li>
143                     [% IF library %]
144                         <span class="label">Library code: </span>
145                         <input type="hidden" name="branchcode" value="[% library.branchcode %]" />
146                         [% library.branchcode %]
147                     [% ELSE %]
148                         <label for="branchcode" class="required">Library code: </label>
149                         <input type="text" name="branchcode" id="branchcode" size="10" maxlength="10" value="[% library.branchcode %]" class="required" required="required" />
150                         <span class="required">Required</span>
151                     [% END %]
152                 </li>
153                 <li>
154                     <label for="branchname" class="required">Name: </label>
155                     <input type="text" name="branchname" id="branchname" size="80" value="[% library.branchname %]" class="required" required="required" />
156                     <span class="required">Required</span>
157                 </li>
158             </ol>
159         </fieldset>
160         [% IF categories %]
161             <fieldset class="rows"><legend>Group(s):</legend>
162                 <ol>
163                     [% FOREACH category IN categories %]
164                         <li>
165                             <label for="[% category.categorycode %]">[% category.categoryname %]: </label>
166                             [% IF category and selected_categorycodes.grep(category.categorycode).size %]
167                                 <input type="checkbox" id="[% category.categorycode %]" name="selected_categorycode_[% category.categorycode %]" checked="checked" />
168                             [% ELSE %]
169                                 <input type="checkbox" id="[% category.categorycode %]" name="selected_categorycode_[% category.categorycode %]" />
170                             [% END %]
171                             <span class="hint">[% category.codedescription %]</span>
172                         </li>
173                     [% END %]
174                 </ol>
175             </fieldset>
176         [% END %]
177         <fieldset class="rows">
178             <ol>
179                 <li><label for="branchaddress1">Address line 1: </label><input type="text" name="branchaddress1" id="branchaddress1" size="60" value="[% library.branchaddress1 %]" /></li>
180                 <li><label for="branchaddress2">Address line 2: </label><input type="text" name="branchaddress2" id="branchaddress2" size="60" value="[% library.branchaddress2 %]" /></li>
181                 <li><label for="branchaddress3">Address line 3: </label><input type="text" name="branchaddress3" id="branchaddress3" size="60" value="[% library.branchaddress3 %]" /></li>
182                 <li><label for="branchcity">City: </label><input type="text" name="branchcity" id="branchcity" size="60" value="[% library.branchcity %]" /></li>
183                 <li><label for="branchstate">State: </label><input type="text" name="branchstate" id="branchstate" size="60" value="[% library.branchstate %]" /></li>
184                 <li><label for="branchzip">ZIP/Postal code: </label><input type="text" name="branchzip" id="branchzip"  size="25" maxlength="25" value="[% library.branchzip %]" /></li>
185                 <li><label for="branchcountry">Country: </label><input type="text" name="branchcountry" id="branchcountry" size="60" value="[% library.branchcountry %]" /></li>
186                 <li><label for="branchphone">Phone: </label><input type="text" name="branchphone" id="branchphone" size="60" value="[% library.branchphone %]" /></li>
187                 <li><label for="branchfax">Fax: </label><input type="text" name="branchfax" id="branchfax" size="60" value="[% library.branchfax %]" /></li>
188                 <li><label for="branchemail">Email: </label><input type="text" name="branchemail" id="branchemail" class="email"  size="80" value="[% library.branchemail %]" /></li>
189                 <li><label for="branchreplyto">Reply-To (if different to Email): </label> <input type="text" name="branchreplyto" id="branchreplyto" class="email"  size="80" value="[% library.branchreplyto %]" /></li>
190                 <li><label for="branchreturnpath">Return-Path (if different to Email): </label> <input type="text" name="branchreturnpath" id="branchreturnpath" class="email"  size="80" value="[% library.branchreturnpath %]" /></li>
191                 <li><label for="branchurl">URL: </label><input type="text" name="branchurl" id="branchurl"  size="80" value="[% library.branchurl %]" class="url" /></li>
192                 <li><label for="opac_info">OPAC info: </label><textarea name="opac_info" id="opac_info">[% library.opac_info.raw %]</textarea></li>
193                 <li><label for="branchip">IP: </label><input type="text" name="branchip" id="branchip"  size="15" maxlength="15" value="[% library.branchip %]" /> <span class="hint">Can be entered as a single IP, or a subnet such as 192.168.1.*</span></li>
194                 <li><label for="branchnotes">Notes: </label><input type="text" name="branchnotes" id="branchnotes" size="80" value="[% library.branchnotes %]" /></li>
195             </ol>
196         </fieldset>
197         <fieldset class="action">
198             <input type="submit" value="Submit" />
199             <a class="cancel" href="/cgi-bin/koha/admin/branches.pl">Cancel</a>
200         </fieldset>
201     </form>
202 [% END %]
203
204 [% IF op == 'delete_confirm' and not ( items_count or patrons_count )%]
205     <form action="/cgi-bin/koha/admin/branches.pl" method="post">
206         <fieldset>
207             <legend>Confirm deletion of [% library.branchname %] ([% library.branchcode %])?</legend>
208             <input type="hidden" name="op" value="delete_confirmed" />
209             <input type="hidden" name="branchcode" value="[% library.branchcode %]" />
210             <input type="hidden" name="branchname" value="[% library.branchname %]">
211             <fieldset class="action">
212                 <input type="submit" value="Delete Library" />
213                 <a class="cancel" href="/cgi-bin/koha/admin/branches.pl">Cancel</a>
214             </fieldset>
215         </fieldset>
216     </form>
217 [% END %]
218
219 [% IF op == 'list' %]
220     <h3>Libraries</h3>
221     [% IF libraries %]
222         <table id="branchest">
223             <thead>
224                 <tr>
225                     <th>Name</th>
226                     <th>Code</th>
227                     <th>Address</th>
228                     <th>Properties</th>
229                     <th>IP</th>
230                     <th>&nbsp;</th>
231                     <th>&nbsp;</th>
232                 </tr>
233             </thead>
234             <tbody>
235                 [% FOREACH library IN libraries %]
236                     <tr>
237                         <td>[% library.branchname %]</td>
238                         <td>[% library.branchcode %]</td>
239                         <td>
240                             [% IF library.branchaddress1 %]
241                                 [% library.branchaddress1 %][% END %]
242                             [% IF library.branchaddress2 %]
243                                 <br />[% library.branchaddress2 %][% END %]
244                             [% IF library.branchaddress3 %]
245                                 <br />[% library.branchaddress3 %][% END %]
246                             [% IF library.branchcity %]
247                                 <br />[% library.branchcity %][% END %][% IF ( library.branchstate ) %],
248                                 [% library.branchstate %][% END %]
249                             [% IF library.branchzip %]
250                                 [% library.branchzip %][% END %]
251                             [% IF library.branchcountry %]
252                                 <br />[% library.branchcountry %][% END %]
253                             [% IF library.branchphone %]
254                                 <br />Ph: [% library.branchphone %][% END %]
255                             [% IF library.branchfax %]
256                                 <br />Fax: [% library.branchfax %][% END %]
257                             [% IF library.branchemail %]
258                                 <br /><a href="mailto:[% library.branchemail %]">[% library.branchemail %]</a>[% END %]
259                             [% IF library.branchurl %]
260                                 <br /><a href="[% library.branchurl %]">[% library.branchurl %]</a>[% END %]
261                             [% IF library.opac_info %]
262                                 <br />OPAC Info: <div>[% library.opac_info.raw %]</div>[% END %]
263                             [% IF library.branchnotes %]
264                                 <br />Notes: [% library.branchnotes %][% END %]
265                         </td>
266                         <td>
267                             [% FOREACH category IN library.get_categories %]
268                                 [% category.categoryname %]<br />
269                             [% END %]
270                         </td>
271                         <td>[% library.branchip %]</td>
272                         <td>
273                             <a href="/cgi-bin/koha/admin/branches.pl?op=add_form&amp;branchcode=[% library.branchcode %]">Edit</a>
274                         </td>
275                         <td>
276                             <a href="/cgi-bin/koha/admin/branches.pl?op=delete_confirm&amp;branchcode=[% library.branchcode %]">Delete</a>
277                         </td>
278                     </tr>
279                 [% END %]
280             </tbody>
281         </table>
282     [% ELSE %]
283         <div class="dialog message">There are no libraries defined. <a href="/cgi-bin/koha/admin/branches.pl?op=add_form">Start defining libraries</a>.</div>
284     [% END %]
285
286     [% IF group_types %]
287         [% FOREACH group_type IN group_types %]
288             <h3>[% IF group_type.categorytype == 'properties' %]Properties[% ELSIF group_type.categorytype == 'searchdomain' %]Search domain[% END %]</h3>
289             [% IF group_type.categories %]
290                 <table>
291                     <thead>
292                         <tr>
293                             <th>Name</th>
294                             <th>Code</th>
295                             <th>Description</th>
296                             <th>&nbsp;</th>
297                             <th>&nbsp;</th>
298                         </tr>
299                     </thead>
300                     <tbody>
301                         [% FOREACH category IN group_type.categories %]
302                             <tr>
303                                 <td>[% category.categoryname %]</td>
304                                 <td>[% category.categorycode %]</td>
305                                 <td>[% category.codedescription %]</td>
306                                 <td>
307                                   <a href="/cgi-bin/koha/admin/branches.pl?categorycode=[% category.categorycode %]&amp;op=add_form_category">Edit</a>
308                                 </td>
309                                 <td>
310                                     <a href="/cgi-bin/koha/admin/branches.pl?categorycode=[% category.categorycode %]&amp;op=delete_confirm_category">Delete</a>
311                                 </td>
312                             </tr>
313                         [% END %]
314                     </tbody>
315                 </table>
316             [% ELSE %]
317                 [% IF group_type.categorytype == 'properties' %]
318                     No properties defined.
319                 [% ELSIF group_type.categorytype == 'searchdomain' %]
320                     No search domain defined.
321                 [% END %]
322                 <a href="/cgi-bin/koha/admin/branches.pl?op=add_form_category">Add a new group</a>.
323             [% END %]
324         [% END %]
325     [% ELSE %]
326         <p>No groups defined.</p>
327     [% END %]
328 [% END %]
329
330 [% IF op == 'add_form_category' %]
331     <h3>[% IF category.categorycode %]Edit group [% category.categorycode %][% ELSE %]Add group[% END %]</h3>
332     <form action="/cgi-bin/koha/admin/branches.pl" name="Aform" method="post">
333         <input type="hidden" name="op" value="add_validate_category" />
334         [% IF category.categorycode %]
335             <input type="hidden" name="is_a_modif" value="1" />
336         [% END %]
337         <fieldset class="rows">
338             <ol>
339                 <li>
340                     [% IF category.categorycode %]
341                         <span class="label">Category code: </span>
342                         <input type="hidden" name="categorycode" id="categorycode" value="[% category.categorycode %]" />
343                         [% category.categorycode %]
344                     [% ELSE %]
345                         <label for="categorycode">Category code:</label>
346                         <input type="text" name="categorycode" id="categorycode" size="10" maxlength="10" />
347                     [% END %]
348                 </li>
349                 <li>
350                     <label for="categoryname">Name: </label>
351                     <input type="text" name="categoryname" id="categoryname" size="32" maxlength="32" value="[% category.categoryname %]" />
352                 </li>
353                 <li>
354                     <label for="codedescription">Description: </label>
355                     <input type="text" name="codedescription" id="codedescription" size="70" value="[% category.codedescription %]" />
356                 </li>
357                 <li>
358                     <label for="categorytype">Category type: </label>
359                     <select id="categorytype" name="categorytype">
360                         [% IF category.categorytype == 'properties' %]
361                             <option value="searchdomain">Search domain</option>
362                             <option value="properties" selected="selected">Properties</option>
363                         [% ELSE %]
364                             <option value="searchdomain">Search domain</option>
365                             <option value="properties">Properties</option>
366                         [% END %]
367                     </select>
368                 </li>
369                 <li>
370                     <label for="show_in_pulldown">Show in search pulldown: </label>
371                     [% IF category.show_in_pulldown %]
372                         <input type="checkbox" name="show_in_pulldown" id="show_in_pulldown" checked="checked"/>
373                     [% ELSE %]
374                         <input type="checkbox" name="show_in_pulldown" id="show_in_pulldown" />
375                     [% END %]
376                 </li>
377             </ol>
378         </fieldset>
379         <fieldset class="action"><input type="submit" value="Update" /></fieldset>
380     </form>
381 [% END %]
382
383 [% IF op == 'delete_confirm_category' %]
384     <div class="dialog message">
385     Are you sure you want to delete the group '[% category.codedescription %]' ([% category.categorycode %])?
386     <form action="/cgi-bin/koha/admin/branches.pl" method="post">
387         <input type="hidden" name="op" value="delete_confirmed_category" />
388         <input type="hidden" name="categorycode" value="[% category.categorycode %]" />
389         <input type="submit" value="Delete" />
390         <a class="cancel" href="/cgi-bin/koha/admin/branches.pl">Cancel</a>
391     </form>
392     </div>
393 [% END %]
394
395 </div>
396 </div>
397 <div class="yui-b">
398 [% INCLUDE 'admin-menu.inc' %]
399 </div>
400 </div>
401 [% INCLUDE 'intranet-bottom.inc' %]