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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers.inc (-4 / +4 lines)
Lines 209-220 Link Here
209
[% END %]
209
[% END %]
210
210
211
[% BLOCK items_table_batchmod %]
211
[% BLOCK items_table_batchmod %]
212
212
<div class="page-section">
213
    [% IF display_columns_selection %][%# Needs js/pages/batchMod.js %]
213
    [% IF display_columns_selection %][%# Needs js/pages/batchMod.js %]
214
        [% IF checkboxes_edit OR checkboxes_delete %]
214
        [% IF checkboxes_edit OR checkboxes_delete %]
215
            <div id="toolbar">
215
            <fieldset class="action">
216
                <a id="selectallbutton" href="#"><i class="fa fa-check"></i> Select all</a> | <a id="clearallbutton" href="#"><i class="fa fa-remove"></i> Clear all</a> | <a id="clearonloanbutton" href="#">Clear on loan</a>
216
                <a id="selectallbutton" href="#"><i class="fa fa-check"></i> Select all</a> | <a id="clearallbutton" href="#"><i class="fa fa-remove"></i> Clear all</a> | <a id="clearonloanbutton" href="#">Clear on loan</a>
217
            </div>
217
            </fieldset>
218
        [% END %]
218
        [% END %]
219
219
220
        <div id="cataloguing_additem_itemlist">
220
        <div id="cataloguing_additem_itemlist">
Lines 339-343 Link Here
339
            [% END # /FOREACH items %]
339
            [% END # /FOREACH items %]
340
        </tbody>
340
        </tbody>
341
    </table> <!-- /#itemst -->
341
    </table> <!-- /#itemst -->
342
342
</div>
343
[% END %]
343
[% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod-edit.tt (-24 / +22 lines)
Lines 75-81 Link Here
75
          </div>
75
          </div>
76
        [% END %]
76
        [% END %]
77
77
78
79
        [% IF ( barcode_not_unique ) %]
78
        [% IF ( barcode_not_unique ) %]
80
            <div class="dialog alert">
79
            <div class="dialog alert">
81
                <strong>Error saving item</strong>: Barcode must be unique.
80
                <strong>Error saving item</strong>: Barcode must be unique.
Lines 90-108 Link Here
90
        [% IF ( notfoundbarcodes.size ) %]
89
        [% IF ( notfoundbarcodes.size ) %]
91
            <div class="dialog alert">
90
            <div class="dialog alert">
92
                <p>Warning, the following barcodes were not found:</p>
91
                <p>Warning, the following barcodes were not found:</p>
92
                <br/>
93
                <table style="margin:auto;">
94
                    <thead>
95
                        <tr><th>Barcodes not found</th></tr>
96
                    </thead>
97
                    <tbody>
98
                        [% FOREACH notfoundbarcode IN notfoundbarcodes %]
99
                            <tr><td>[% notfoundbarcode |html %]</td></td>
100
                        [% END %]
101
                    </tbody>
102
                </table>
93
            </div>
103
            </div>
94
104
95
            <table style="margin:auto;">
96
                <thead>
97
                    <tr><th>Barcodes not found</th></tr>
98
                </thead>
99
                <tbody>
100
                    [% FOREACH notfoundbarcode IN notfoundbarcodes %]
101
                        <tr><td>[% notfoundbarcode |html %]</td></td>
102
                    [% END %]
103
                </tbody>
104
            </table>
105
106
            [% IF ( item_loop ) %]
105
            [% IF ( item_loop ) %]
107
                [% UNLESS ( too_many_items_display ) %]
106
                [% UNLESS ( too_many_items_display ) %]
108
                    <h4>The following barcodes were found: </h4>
107
                    <h4>The following barcodes were found: </h4>
Lines 113-130 Link Here
113
        [% IF ( notfounditemnumbers.size ) %]
112
        [% IF ( notfounditemnumbers.size ) %]
114
            <div class="dialog alert">
113
            <div class="dialog alert">
115
                <p>Warning, the following itemnumbers were not found:</p>
114
                <p>Warning, the following itemnumbers were not found:</p>
115
                <br/>
116
                <table style="margin:auto;">
117
                    <thead>
118
                        <tr><th>Itemnumbers not found</th></tr>
119
                    </thead>
120
                    <tbody>
121
                        [% FOREACH notfounditemnumber IN notfounditemnumbers %]
122
                            <tr><td>[% notfounditemnumber |html %]</td></td>
123
                        [% END %]
124
                    </tbody>
125
                </table>
116
            </div>
126
            </div>
117
118
            <table style="margin:auto;">
119
                <thead>
120
                    <tr><th>Itemnumbers not found</th></tr>
121
                </thead>
122
                <tbody>
123
                    [% FOREACH notfounditemnumber IN notfounditemnumbers %]
124
                        <tr><td>[% notfounditemnumber |html %]</td></td>
125
                    [% END %]
126
                </tbody>
127
            </table>
128
            [% IF ( item_loop ) %]
127
            [% IF ( item_loop ) %]
129
                [% UNLESS ( too_many_items_display ) %]
128
                [% UNLESS ( too_many_items_display ) %]
130
                    <h4>The following itemnumbers were found: </h4>
129
                    <h4>The following itemnumbers were found: </h4>
131
- 

Return to bug 32169