Lines 265-270
Libraries › Administration › Koha
Link Here
|
265 |
[% END %] |
265 |
[% END %] |
266 |
</select> |
266 |
</select> |
267 |
</li> |
267 |
</li> |
|
|
268 |
<li><label for="public">Public: </label> |
269 |
<select name="public" id="public"> |
270 |
[% IF !library || library.public == 1 %] |
271 |
<option value="1" selected="selected">Yes</option> |
272 |
<option value="0">No</option> |
273 |
[% ELSE %] |
274 |
<option value="1">Yes</option> |
275 |
<option value="0" selected="selected">No</option> |
276 |
[% END %] |
277 |
</select> |
278 |
</li> |
268 |
</ol> |
279 |
</ol> |
269 |
</fieldset> |
280 |
</fieldset> |
270 |
<fieldset class="action"> |
281 |
<fieldset class="action"> |
Lines 301-306
Libraries › Administration › Koha
Link Here
|
301 |
<th>MARC organization code</th> |
312 |
<th>MARC organization code</th> |
302 |
<th>IP</th> |
313 |
<th>IP</th> |
303 |
<th>Pickup location</th> |
314 |
<th>Pickup location</th> |
|
|
315 |
<th>Public</th> |
304 |
<th>SMTP server</th> |
316 |
<th>SMTP server</th> |
305 |
<th data-class-name="actions noExport">Actions</th> |
317 |
<th data-class-name="actions noExport">Actions</th> |
306 |
</tr> |
318 |
</tr> |
Lines 339-345
Libraries › Administration › Koha
Link Here
|
339 |
'embed': [ 'smtp_server' ], |
351 |
'embed': [ 'smtp_server' ], |
340 |
'emptyTable': '<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>', |
352 |
'emptyTable': '<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>', |
341 |
"columnDefs": [ { |
353 |
"columnDefs": [ { |
342 |
"targets": [0,1,3,4,6,8,9,10,11,12,13,14,15], |
354 |
"targets": [0,1,3,4,7,9,10,11,12,13,14,15,16], |
343 |
"render": function (data, type, row, meta) { |
355 |
"render": function (data, type, row, meta) { |
344 |
if ( type == 'display' ) { |
356 |
if ( type == 'display' ) { |
345 |
if ( data != null ) { |
357 |
if ( data != null ) { |
Lines 410-415
Libraries › Administration › Koha
Link Here
|
410 |
return (data) ? _("Yes") : _("No"); |
422 |
return (data) ? _("Yes") : _("No"); |
411 |
} |
423 |
} |
412 |
}, |
424 |
}, |
|
|
425 |
{ |
426 |
"data": "public", |
427 |
"searchable": true, |
428 |
"orderable": true, |
429 |
"render": function( data, type, row, meta ) { |
430 |
return (data) ? _("Yes") : _("No"); |
431 |
} |
432 |
}, |
413 |
{ |
433 |
{ |
414 |
"data": "smtp_server", |
434 |
"data": "smtp_server", |
415 |
"render": function( data, type, row, meta ) { |
435 |
"render": function( data, type, row, meta ) { |