View | Details | Raw Unified | Return to bug 13618
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt (-2 / +2 lines)
Lines 189-195 tinyMCE.init({ Link Here
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>
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>
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>
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 %]</textarea></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>
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>
194
                <li><label for="branchnotes">Notes: </label><input type="text" name="branchnotes" id="branchnotes" size="80" value="[% library.branchnotes %]" /></li>
195
            </ol>
195
            </ol>
Lines 259-265 tinyMCE.init({ Link Here
259
                            [% IF library.branchurl %]
259
                            [% IF library.branchurl %]
260
                                <br /><a href="[% library.branchurl %]">[% library.branchurl %]</a>[% END %]
260
                                <br /><a href="[% library.branchurl %]">[% library.branchurl %]</a>[% END %]
261
                            [% IF library.opac_info %]
261
                            [% IF library.opac_info %]
262
                                <br />OPAC Info: <div>[% library.opac_info %]</div>[% END %]
262
                                <br />OPAC Info: <div>[% library.opac_info.raw %]</div>[% END %]
263
                            [% IF library.branchnotes %]
263
                            [% IF library.branchnotes %]
264
                                <br />Notes: [% library.branchnotes %][% END %]
264
                                <br />Notes: [% library.branchnotes %][% END %]
265
                        </td>
265
                        </td>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt (-3 / +2 lines)
Lines 1217-1223 Link Here
1217
                                        <span>[% ITEM_RESULT.branchname %]</span>
1217
                                        <span>[% ITEM_RESULT.branchname %]</span>
1218
                                    [% END %]
1218
                                    [% END %]
1219
                                </span>
1219
                                </span>
1220
                                <div class="branch-info-tooltip">[% ITEM_RESULT.holding_branch_opac_info %]</div>
1220
                                <div class="branch-info-tooltip">[% ITEM_RESULT.holding_branch_opac_info.raw %]</div>
1221
1221
1222
                                [% IF ( OpacLocationBranchToDisplayShelving == 'holding' || OpacLocationBranchToDisplayShelving == 'both' ) %]
1222
                                [% IF ( OpacLocationBranchToDisplayShelving == 'holding' || OpacLocationBranchToDisplayShelving == 'both' ) %]
1223
                                    <span class="shelvingloc">[% ITEM_RESULT.location_description %]</span>
1223
                                    <span class="shelvingloc">[% ITEM_RESULT.location_description %]</span>
Lines 1242-1248 Link Here
1242
                                        <span>[% Branches.GetName( ITEM_RESULT.homebranch ) %]</span>
1242
                                        <span>[% Branches.GetName( ITEM_RESULT.homebranch ) %]</span>
1243
                                    [% END %]
1243
                                    [% END %]
1244
                                </span>
1244
                                </span>
1245
                                <div class="branch-info-tooltip">[% ITEM_RESULT.home_branch_opac_info %]</div>
1245
                                <div class="branch-info-tooltip">[% ITEM_RESULT.home_branch_opac_info.raw %]</div>
1246
1246
1247
                                [% IF ( OpacLocationBranchToDisplayShelving == 'home' || OpacLocationBranchToDisplayShelving == 'both' ) %]
1247
                                [% IF ( OpacLocationBranchToDisplayShelving == 'home' || OpacLocationBranchToDisplayShelving == 'both' ) %]
1248
                                    <span class="shelvingloc">[% ITEM_RESULT.location_description %]</span>
1248
                                    <span class="shelvingloc">[% ITEM_RESULT.location_description %]</span>
1249
- 

Return to bug 13618