Lines 235-241
Libraries › Administration › Koha
Link Here
|
235 |
</select> |
235 |
</select> |
236 |
</li> |
236 |
</li> |
237 |
<li><label for="branchurl">URL: </label><input type="text" name="branchurl" id="branchurl" size="80" value="[% library.branchurl | html %]" class="url" /></li> |
237 |
<li><label for="branchurl">URL: </label><input type="text" name="branchurl" id="branchurl" size="80" value="[% library.branchurl | html %]" class="url" /></li> |
238 |
<li><label for="opac_info">OPAC info: </label><textarea name="opac_info" id="opac_info">[% library.opac_info | $raw %]</textarea></li> |
|
|
239 |
<li> |
238 |
<li> |
240 |
<label for="branchip">IP: </label> |
239 |
<label for="branchip">IP: </label> |
241 |
<input type="text" name="branchip" id="branchip" size="15" maxlength="15" value="[% library.branchip | html %]" /> |
240 |
<input type="text" name="branchip" id="branchip" size="15" maxlength="15" value="[% library.branchip | html %]" /> |
Lines 385-391
Libraries › Administration › Koha
Link Here
|
385 |
if ( row.fax != null ) library_info.push(_("Fax: ") + row.fax.escapeHtml()); |
384 |
if ( row.fax != null ) library_info.push(_("Fax: ") + row.fax.escapeHtml()); |
386 |
if ( row.email != null ) library_info.push('<a href="mailto:'+encodeURIComponent(row.email)+'">'+row.email.escapeHtml()+'</a>'); |
385 |
if ( row.email != null ) library_info.push('<a href="mailto:'+encodeURIComponent(row.email)+'">'+row.email.escapeHtml()+'</a>'); |
387 |
if ( row.url != null ) library_info.push('<a href="'+encodeURIComponent(row.url)+'">'+row.url.escapeHtml()+'</a>'); |
386 |
if ( row.url != null ) library_info.push('<a href="'+encodeURIComponent(row.url)+'">'+row.url.escapeHtml()+'</a>'); |
388 |
if ( row.opac_info != null ) library_info.push(_("OPAC Info") + ': <div>'+row.opac_info.escapeHtml()+'</div>'); |
|
|
389 |
if ( row.notes != null ) library_info.push(_("Notes")+': '+row.notes.escapeHtml()); |
387 |
if ( row.notes != null ) library_info.push(_("Notes")+': '+row.notes.escapeHtml()); |
390 |
return library_info.join('<br/>'); |
388 |
return library_info.join('<br/>'); |
391 |
}, |
389 |
}, |
392 |
- |
|
|