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 12-18 Link Here
12
            <form>
12
            <form>
13
                <h3>Click on the following links to download the exported batch(es).</h3>
13
                <h3>Click on the following links to download the exported batch(es).</h3>
14
                [% IF warn_empty_range %]
14
                [% IF warn_empty_range %]
15
                <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>
15
                <div class="dialog alert">
16
                    <p>Some or all of the barcodes in the range you have selected have no corresponding items.</p>
17
                    <p>If you are using a layout without barcodes, this may result in missing entries or a blank page</p>
18
                </div>
16
                [% END %]
19
                [% END %]
17
                        [% FOREACH batche IN batches %]
20
                        [% FOREACH batche IN batches %]
18
                        <fieldset>
21
                        <fieldset>
19
- 

Return to bug 7468