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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/html-customization-help.inc (-2 lines)
Lines 52-59 Link Here
52
52
53
<div id="PatronSelfRegistrationAdditionalInstructions_notes" class="hint customization_note"> Show the following content on the patron self-registration confirmation page. </div>
53
<div id="PatronSelfRegistrationAdditionalInstructions_notes" class="hint customization_note"> Show the following content on the patron self-registration confirmation page. </div>
54
54
55
<div id="RoutingListNote" class="hint customization_note"> Include the following note on all routing list slips. </div>
56
57
<div id="SCOMainUserBlock_notes" class="hint customization_note"> Show this content on the web-based self-checkout screen. </div>
55
<div id="SCOMainUserBlock_notes" class="hint customization_note"> Show this content on the web-based self-checkout screen. </div>
58
56
59
<div id="SelfCheckHelpMessage_notes" class="hint customization_note"> Show this content on the Help page of the web-based self-checkout system. </div>
57
<div id="SelfCheckHelpMessage_notes" class="hint customization_note"> Show this content on the Help page of the web-based self-checkout system. </div>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/serials.pref (-1 / +1 lines)
Lines 26-32 Serials: Link Here
26
          choices:
26
          choices:
27
              1: Use
27
              1: Use
28
              0: "Don't use"
28
              0: "Don't use"
29
        - the routing list feature in the serials module. A custom message can be shown on routing slips by creating an <a href="/cgi-bin/koha/tools/additional-contents.pl?category=html_customizations">HTML customization</a> in the RoutingListNote region.
29
        - the routing list feature in the serials module. A custom routing slip can be created using the ROUTING_SLIP notice</a>.
30
    -
30
    -
31
        - pref: RoutingListAddReserves
31
        - pref: RoutingListAddReserves
32
          choices:
32
          choices:
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/routing-preview-slip.tt (-16 lines)
Lines 1-7 Link Here
1
[% USE raw %]
1
[% USE raw %]
2
[% USE Koha %]
2
[% USE Koha %]
3
[% PROCESS 'i18n.inc' %]
3
[% PROCESS 'i18n.inc' %]
4
[% USE AdditionalContents %]
5
[% SET footerjs = 1 %]
4
[% SET footerjs = 1 %]
6
[% INCLUDE 'doc-head-open.inc' %]
5
[% INCLUDE 'doc-head-open.inc' %]
7
<title
6
<title
Lines 24-43 Link Here
24
    <h1>[% tx("Routing slip for {title}", { title = title }) | html %]</h1>
23
    <h1>[% tx("Routing slip for {title}", { title = title }) | html %]</h1>
25
    <div class="page-section"> [% letter_content | $raw %] </div>
24
    <div class="page-section"> [% letter_content | $raw %] </div>
26
25
27
    <div id="routingnotes">
28
        [%- SET RoutingListNote = AdditionalContents.get( location => "RoutingListNote", lang => lang, library => logged_in_user.branchcode ) -%]
29
30
        [% IF ( RoutingListNote.content && RoutingListNote.content.count > 0 ) %]
31
            <div id="[% RoutingListNote.location | html %]">
32
                [% FOREACH n IN RoutingListNote.content %]
33
                    <div class="[% n.lang | html %]_item">
34
                        <div class="[% n.lang | html %]_body">[% n.content | $raw %]</div>
35
                    </div>
36
                [% END %]
37
            </div>
38
        [% END %]
39
    </div>
40
41
    <nav class="navbar navbar-default fixed-bottom">
26
    <nav class="navbar navbar-default fixed-bottom">
42
        <div class="container-fluid">
27
        <div class="container-fluid">
43
            <fieldset class="action">
28
            <fieldset class="action">
44
- 

Return to bug 9750