Bug 13968 - Branch email hints are misleading
[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="[% interface %]/[% theme %]/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 ], "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 : "[% interface %]/[% theme %]/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 'prefs-admin-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 [% FOREACH 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-default btn-sm" 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-default btn-sm" 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 |html %]" />
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 |html %]" 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 |html %]" 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 |html %]" /></li>
180                 <li><label for="branchaddress2">Address line 2: </label><input type="text" name="branchaddress2" id="branchaddress2" size="60" value="[% library.branchaddress2 |html %]" /></li>
181                 <li><label for="branchaddress3">Address line 3: </label><input type="text" name="branchaddress3" id="branchaddress3" size="60" value="[% library.branchaddress3 |html %]" /></li>
182                 <li><label for="branchcity">City: </label><input type="text" name="branchcity" id="branchcity" size="60" value="[% library.branchcity |html %]" /></li>
183                 <li><label for="branchstate">State: </label><input type="text" name="branchstate" id="branchstate" size="60" value="[% library.branchstate |html %]" /></li>
184                 <li><label for="branchzip">ZIP/Postal code: </label><input type="text" name="branchzip" id="branchzip"  size="25" maxlength="25" value="[% library.branchzip |html %]" /></li>
185                 <li><label for="branchcountry">Country: </label><input type="text" name="branchcountry" id="branchcountry" size="60" value="[% library.branchcountry |html %]" /></li>
186                 <li><label for="branchphone">Phone: </label><input type="text" name="branchphone" id="branchphone" size="60" value="[% library.branchphone |html %]" /></li>
187                 <li><label for="branchfax">Fax: </label><input type="text" name="branchfax" id="branchfax" size="60" value="[% library.branchfax |html %]" /></li>
188                 <li><label for="branchemail">Email: </label><input type="text" name="branchemail" id="branchemail" class="email"  size="80" value="[% library.branchemail |html %]" /></li>
189                 <li><label for="branchreplyto">Reply-To: </label> <input type="text" name="branchreplyto" id="branchreplyto" class="email"  size="80" value="[% library.branchreplyto |html %]" /><br /><span class="hint"></hint>Default: ReplyToDefault system preference</li>
190                 <li><label for="branchreturnpath">Return-Path: </label> <input type="text" name="branchreturnpath" id="branchreturnpath" class="email"  size="80" value="[% library.branchreturnpath |html %]" /><br /><span class="hint"></hint>Default: ReturnpathDefault system preference</li>
191                 <li><label for="branchurl">URL: </label><input type="text" name="branchurl" id="branchurl"  size="80" value="[% library.branchurl |html %]" class="url" /></li>
192                 <li><label for="opac_info">OPAC info: </label><textarea name="opac_info" id="opac_info">[% library.opac_info |html %]</textarea></li>
193                 <li><label for="branchip">IP: </label><input type="text" name="branchip" id="branchip"  size="15" maxlength="15" value="[% library.branchip |html %]" /> <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 |html %]" /></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     <div class="dialog alert">
206         <form action="/cgi-bin/koha/admin/branches.pl" method="post">
207             <h3>Are you sure you want to delete [% library.branchname %] ([% library.branchcode %])?</h3>
208             <input type="hidden" name="op" value="delete_confirmed" />
209             <input type="hidden" name="branchcode" value="[% library.branchcode |html %]" />
210             <input type="hidden" name="branchname" value="[% library.branchname |html %]">
211             <button type="submit" class="approve"><i class="fa fa-fw fa-check"></i> Yes, delete</button>
212         </form>
213         <form action="/cgi-bin/koha/admin/branches.pl" method="get">
214             <button type="submit" class="deny"><i class="fa fa-fw fa-remove"></i> No, do not delete</button>
215         </form>
216     </div>
217 [% END %]
218
219 [% IF op == 'list' %]
220     <h3>Libraries</h3>
221     [% IF libraries.count %]
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>Actions</th>
231                 </tr>
232             </thead>
233             <tbody>
234                 [% FOREACH library IN libraries %]
235                     <tr>
236                         <td>[% library.branchname |html %]</td>
237                         <td>[% library.branchcode |html %]</td>
238                         <td>
239                             [% IF library.branchaddress1 %]
240                                 [% library.branchaddress1 |html %][% END %]
241                             [% IF library.branchaddress2 %]
242                                 <br />[% library.branchaddress2 |html %][% END %]
243                             [% IF library.branchaddress3 %]
244                                 <br />[% library.branchaddress3 |html %][% END %]
245                             [% IF library.branchcity %]
246                                 <br />[% library.branchcity |html %][% END %][% IF ( library.branchstate ) %],
247                                 [% library.branchstate |html %][% END %]
248                             [% IF library.branchzip %]
249                                 [% library.branchzip |html %][% END %]
250                             [% IF library.branchcountry %]
251                                 <br />[% library.branchcountry |html %][% END %]
252                             [% IF library.branchphone %]
253                                 <br />Ph: [% library.branchphone |html %][% END %]
254                             [% IF library.branchfax %]
255                                 <br />Fax: [% library.branchfax |html %][% END %]
256                             [% IF library.branchemail %]
257                                 <br /><a href="mailto:[% library.branchemail %]">[% library.branchemail |html %]</a>[% END %]
258                             [% IF library.branchurl %]
259                                 <br /><a href="[% library.branchurl %]">[% library.branchurl |html %]</a>[% END %]
260                             [% IF library.opac_info %]
261                                 <br />OPAC Info: <div>[% library.opac_info %]</div>[% END %]
262                             [% IF library.branchnotes %]
263                                 <br />Notes: [% library.branchnotes |html %][% END %]
264                         </td>
265                         <td>
266                             [% FOREACH category IN library.get_categories %]
267                                 [% category.categoryname %]<br />
268                             [% END %]
269                         </td>
270                         <td>[% library.branchip %]</td>
271                         <td class="actions">
272                             <a class="btn btn-default btn-xs" href="/cgi-bin/koha/admin/branches.pl?op=add_form&amp;branchcode=[% library.branchcode %]"><i class="fa fa-pencil"></i> Edit</a>
273                             <a class="btn btn-default btn-xs" href="/cgi-bin/koha/admin/branches.pl?op=delete_confirm&amp;branchcode=[% library.branchcode %]"><i class="fa fa-trash"></i> Delete</a>
274                         </td>
275                     </tr>
276                 [% END %]
277             </tbody>
278         </table>
279     [% ELSE %]
280         <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>
281     [% END %]
282
283     [% IF group_types %]
284         [% FOREACH group_type IN group_types %]
285             <h3>[% IF group_type.categorytype == 'properties' %]Properties[% ELSIF group_type.categorytype == 'searchdomain' %]Search domain[% END %]</h3>
286             [% IF group_type.categories.size %]
287                 <table>
288                     <thead>
289                         <tr>
290                             <th>Name</th>
291                             <th>Code</th>
292                             <th>Description</th>
293                             <th>Actions</th>
294                         </tr>
295                     </thead>
296                     <tbody>
297                         [% FOREACH category IN group_type.categories %]
298                             <tr>
299                                 <td>[% category.categoryname %]</td>
300                                 <td>[% category.categorycode %]</td>
301                                 <td>[% category.codedescription %]</td>
302                                 <td class="actions">
303                                   <a class="btn btn-default btn-xs" href="/cgi-bin/koha/admin/branches.pl?categorycode=[% category.categorycode %]&amp;op=add_form_category"><i class="fa fa-pencil"></i> Edit</a>
304                                   <a class="btn btn-default btn-xs" href="/cgi-bin/koha/admin/branches.pl?categorycode=[% category.categorycode %]&amp;op=delete_confirm_category"><i class="fa fa-trash"></i> Delete</a>
305                                 </td>
306                             </tr>
307                         [% END %]
308                     </tbody>
309                 </table>
310             [% ELSE %]
311                 [% IF group_type.categorytype == 'properties' %]
312                     No properties defined.
313                 [% ELSIF group_type.categorytype == 'searchdomain' %]
314                     No search domain defined.
315                 [% END %]
316                 <a href="/cgi-bin/koha/admin/branches.pl?op=add_form_category">Add a new group</a>.
317             [% END %]
318         [% END %]
319     [% ELSE %]
320         <p>No groups defined.</p>
321     [% END %]
322 [% END %]
323
324 [% IF op == 'add_form_category' %]
325     <h3>[% IF category.categorycode %]Edit group [% category.categorycode %][% ELSE %]Add group[% END %]</h3>
326     <form action="/cgi-bin/koha/admin/branches.pl" name="Aform" method="post" class="validated">
327         <input type="hidden" name="op" value="add_validate_category" />
328         [% IF category.categorycode %]
329             <input type="hidden" name="is_a_modif" value="1" />
330         [% END %]
331         <fieldset class="rows">
332             <ol>
333                 <li>
334                     [% IF category.categorycode %]
335                         <span class="label">Category code: </span>
336                         <input type="hidden" name="categorycode" id="categorycode" value="[% category.categorycode |html %]" />
337                         [% category.categorycode %]
338                     [% ELSE %]
339                         <label for="categorycode" class="required">Category code:</label>
340                         <input type="text" name="categorycode" id="categorycode" size="10" maxlength="10" class="required" required="required" />
341                         <span class="required">Required</span>
342                     [% END %]
343                 </li>
344                 <li>
345                     <label for="categoryname" class="required">Name: </label>
346                     <input type="text" name="categoryname" id="categoryname" size="32" maxlength="32" value="[% category.categoryname |html %]" class="required" required="required" />
347                     <span class="required">Required</span>
348                 </li>
349                 <li>
350                     <label for="codedescription">Description: </label>
351                     <input type="text" name="codedescription" id="codedescription" size="70" value="[% category.codedescription |html %]" />
352                 </li>
353                 <li>
354                     <label for="categorytype">Category type: </label>
355                     <select id="categorytype" name="categorytype">
356                         [% IF category.categorytype == 'properties' %]
357                             <option value="searchdomain">Search domain</option>
358                             <option value="properties" selected="selected">Properties</option>
359                         [% ELSE %]
360                             <option value="searchdomain">Search domain</option>
361                             <option value="properties">Properties</option>
362
363                         [% END %]
364                     </select>
365                 </li>
366                 <li>
367                     <label for="show_in_pulldown">Show in search pulldown: </label>
368                     [% IF category.show_in_pulldown %]
369                         <input type="checkbox" name="show_in_pulldown" id="show_in_pulldown" checked="checked"/>
370                     [% ELSE %]
371                         <input type="checkbox" name="show_in_pulldown" id="show_in_pulldown" />
372                     [% END %]
373                 </li>
374             </ol>
375         </fieldset>
376         <fieldset class="action">
377             <input type="submit" value="Submit" />
378             <a href="/cgi-bin/koha/admin/branches.pl" class="cancel">Cancel</a>
379         </fieldset>
380     </form>
381 [% END %]
382
383 [% IF op == 'delete_confirm_category' %]
384     <div class="dialog alert">
385     <h3>Are you sure you want to delete the group '[% category.codedescription %]' ([% category.categorycode %])?</h3>
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 |html %]" />
389         <button type="submit" class="approve"><i class="fa fa-fw fa-check"></i> Yes, delete</button>
390     </form>
391     <form action="/cgi-bin/koha/admin/branches.pl" method="get">
392         <button type="submit" class="deny"><i class="fa fa-fw fa-remove"></i> No, do not delete</button>
393     </form>
394     </div>
395 [% END %]
396
397 </div>
398 </div>
399 <div class="yui-b">
400 [% INCLUDE 'admin-menu.inc' %]
401 </div>
402 </div>
403 [% INCLUDE 'intranet-bottom.inc' %]