Lines 192-197
tinyMCE.init({
Link Here
|
192 |
<li><label for="opac_info">OPAC info: </label><textarea name="opac_info" id="opac_info">[% library.opac_info |html %]</textarea></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> |
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> |
194 |
<li><label for="branchnotes">Notes: </label><input type="text" name="branchnotes" id="branchnotes" size="80" value="[% library.branchnotes |html %]" /></li> |
|
|
195 |
<li><label for="pickup_location">Pickup location: </label><select name="pickup_location" id="pickup_location"><option value="1" [% IF library.pickup_location %]selected[% END %]>Yes</option><option value="0" [% IF !library.pickup_location %]selected[% END %]>No</option></select></li> |
195 |
</ol> |
196 |
</ol> |
196 |
</fieldset> |
197 |
</fieldset> |
197 |
<fieldset class="action"> |
198 |
<fieldset class="action"> |
Lines 227-232
tinyMCE.init({
Link Here
|
227 |
<th>Address</th> |
228 |
<th>Address</th> |
228 |
<th>Properties</th> |
229 |
<th>Properties</th> |
229 |
<th>IP</th> |
230 |
<th>IP</th> |
|
|
231 |
<th>Pickup location</th> |
230 |
<th>Actions</th> |
232 |
<th>Actions</th> |
231 |
</tr> |
233 |
</tr> |
232 |
</thead> |
234 |
</thead> |
Lines 268-273
tinyMCE.init({
Link Here
|
268 |
[% END %] |
270 |
[% END %] |
269 |
</td> |
271 |
</td> |
270 |
<td>[% library.branchip %]</td> |
272 |
<td>[% library.branchip %]</td> |
|
|
273 |
<td>[% IF library.pickup_location %]Yes[% ELSE %]No[% END %]</td> |
271 |
<td class="actions"> |
274 |
<td class="actions"> |
272 |
<a class="btn btn-default btn-xs" href="/cgi-bin/koha/admin/branches.pl?op=add_form&branchcode=[% library.branchcode %]"><i class="fa fa-pencil"></i> Edit</a> |
275 |
<a class="btn btn-default btn-xs" href="/cgi-bin/koha/admin/branches.pl?op=add_form&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&branchcode=[% library.branchcode %]"><i class="fa fa-trash"></i> Delete</a> |
276 |
<a class="btn btn-default btn-xs" href="/cgi-bin/koha/admin/branches.pl?op=delete_confirm&branchcode=[% library.branchcode %]"><i class="fa fa-trash"></i> Delete</a> |
274 |
- |
|
|