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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-detail-tabs.inc (-1 / +2 lines)
Lines 146-154 Link Here
146
                    <form action="/cgi-bin/koha/reserve/modrequest.pl" method="post">
146
                    <form action="/cgi-bin/koha/reserve/modrequest.pl" method="post">
147
                        [% INCLUDE 'csrf-token.inc' %]
147
                        [% INCLUDE 'csrf-token.inc' %]
148
                        <input type="hidden" name="from" value="circ" />
148
                        <input type="hidden" name="from" value="circ" />
149
                        <table id="holds-table" style="width: 100% !Important;">
149
                        <table id="holds-table" class="holds_table" style="width: 100% !Important;">
150
                            <thead>
150
                            <thead>
151
                                <tr>
151
                                <tr>
152
                                    <th id="checkbox" data-colname="checkbox"><input type="checkbox" class="select_hold_all" /></th>
152
                                    <th>Hold date</th>
153
                                    <th>Hold date</th>
153
                                    <th class="anti-the">Title</th>
154
                                    <th class="anti-the">Title</th>
154
                                    <th>Call number</th>
155
                                    <th>Call number</th>
(-)a/koha-tmpl/intranet-tmpl/prog/js/holds.js (-1 / +14 lines)
Lines 158-163 $(document).ready(function () { Link Here
158
                    autoWidth: false,
158
                    autoWidth: false,
159
                    dom: '<"table_controls"B>rt',
159
                    dom: '<"table_controls"B>rt',
160
                    columns: [
160
                    columns: [
161
                        {
162
                            orderable: false,
163
                            data: function (oObj) {
164
                                return (
165
                                    '<input type="checkbox" class="select_hold" data-id="' +
166
                                    oObj.reserve_id +
167
                                    '" data-borrowernumber="' +
168
                                    borrowernumber +
169
                                    '" data-biblionumber="' +
170
                                    oObj.biblionumber +
171
                                    '">'
172
                                );
173
                            },
174
                        },
161
                        {
175
                        {
162
                            data: {
176
                            data: {
163
                                _: "reservedate_formatted",
177
                                _: "reservedate_formatted",
164
- 

Return to bug 40395