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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-edit-range.tt (-1 / +1 lines)
Lines 15-21 Link Here
15
15
16
        function validate() {
16
        function validate() {
17
            var error = false;
17
            var error = false;
18
            if (parseInt(document.getElementById("from-input").value) == 0) {
18
            if (parseInt(document.getElementById("from-input").value) < 1) {
19
                document.getElementById("from-error").innerHTML = "  *Cannot be smaller than 1";
19
                document.getElementById("from-error").innerHTML = "  *Cannot be smaller than 1";
20
                error = true;
20
                error = true;
21
            } else {
21
            } else {
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/labels/label-print.tt (-2 / +4 lines)
Lines 23-29 Link Here
23
            <form>
23
            <form>
24
                <h3>Click on the following links to download the exported batch(es).</h3>
24
                <h3>Click on the following links to download the exported batch(es).</h3>
25
                [% IF warn_empty_range %]
25
                [% IF warn_empty_range %]
26
                <div style="color: red; font-weight: bold;">Some or all of the barcodes in the range you have selected have no corresponding items. Because you are using a layout without barcodes, this may result in missing entries or a blank page.</div>
26
                <div class="dialog alert">
27
                    <p>Some or all of the barcodes in the range you have selected have no corresponding items.</p>
28
                    <p>If you are using a layout without barcodes, this may result in missing entries or a blank page</p>
29
                </div>
27
                [% END %]
30
                [% END %]
28
                        [% FOREACH batche IN batches %]
31
                        [% FOREACH batche IN batches %]
29
                        <fieldset>
32
                        <fieldset>
30
- 

Return to bug 7468