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

(-)a/admin/columns_settings.yml (-1 / +18 lines)
Lines 2578-2584 modules: Link Here
2578
              columnname: renew
2578
              columnname: renew
2579
            -
2579
            -
2580
              columnname: fines
2580
              columnname: fines
2581
2582
      opac_user_relative_issues_table:
2581
      opac_user_relative_issues_table:
2583
        columns:
2582
        columns:
2584
            -
2583
            -
Lines 2591-2596 modules: Link Here
2591
              columnname: callnumber
2590
              columnname: callnumber
2592
            -
2591
            -
2593
              columnname: relative
2592
              columnname: relative
2593
      readingrec:
2594
        columns:
2595
            -
2596
              columnname: type
2597
            -
2598
              columnname: title
2599
            -
2600
              columnname: author
2601
            -
2602
              columnname: item_type
2603
            -
2604
              columnname: callnumber
2605
            -
2606
              columnname: vol_info
2607
            -
2608
              columnname: date
2609
            -
2610
              columnname: links
2594
2611
2595
  serials:
2612
  serials:
2596
    claims:
2613
    claims:
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-readingrecord.tt (-9 / +11 lines)
Lines 117-132 Link Here
117
        <caption class="sr-only">Checkout history</caption>
117
        <caption class="sr-only">Checkout history</caption>
118
        <thead>
118
        <thead>
119
            <tr>
119
            <tr>
120
                <th style="display:none;" class="no-export">Type</th>
120
                <th data-colname="type" style="display:none;" class="no-export">Type</th>
121
                <th class="no-sort no-export"></th>
121
                <th class="no-sort no-export"></th>
122
                <th class="all anti-the">Title</th>
122
                <th data-colname="title" class="all anti-the">Title</th>
123
                <th>Author</th>
123
                <th data-colname="author">Author</th>
124
                <th>Item type</th>
124
                <th data-colname="item_type">Item type</th>
125
                <th>Call number</th>
125
                <th data-colname="callnumber">Call number</th>
126
                <th>Vol info</th>
126
                <th data-colname="vol_info">Vol info</th>
127
                <th>Date</th>
127
                <th data-colname="date">Date</th>
128
                [% IF Koha.Preference('OPACMySummaryHTML') %]
128
                [% IF Koha.Preference('OPACMySummaryHTML') %]
129
                    <th class="no-sort no-export">Links</th>
129
                    <th data-colname="links" class="no-sort no-export">Links</th>
130
                [% END %]
130
                [% END %]
131
                <th class="dtr-control-col"></th>
131
                <th class="dtr-control-col"></th>
132
            </tr>
132
            </tr>
Lines 215-220 Link Here
215
                            <em>(Checked out)</em>
215
                            <em>(Checked out)</em>
216
                        </td>
216
                        </td>
217
                    [% END %]
217
                    [% END %]
218
                    <td> [% checkout.library.branchname | html %] </td>
218
                    [% IF Koha.Preference('OPACMySummaryHTML') %]
219
                    [% IF Koha.Preference('OPACMySummaryHTML') %]
219
                        <td>[% biblio.opac_summary_html | $raw %]</td>
220
                        <td>[% biblio.opac_summary_html | $raw %]</td>
220
                    [% END %]
221
                    [% END %]
Lines 235-240 Link Here
235
                $('#sortform').submit();
236
                $('#sortform').submit();
236
            });
237
            });
237
238
239
            var table_settings = [% TablesSettings.GetTableSettings( 'opac', 'patron_details', 'readingrec', 'json') | $raw %];
238
            var table = $("#readingrec").kohaTable(
240
            var table = $("#readingrec").kohaTable(
239
                {
241
                {
240
                    dom: '<"top"<"table_entries"i><"table_controls"fB>>t',
242
                    dom: '<"top"<"table_entries"i><"table_controls"fB>>t',
Lines 250-255 Link Here
250
                        { visible: false, targets: [0] },
252
                        { visible: false, targets: [0] },
251
                    ],
253
                    ],
252
                },
254
                },
255
                table_settings
253
            );
256
            );
254
257
255
            let table_dt = table.DataTable();
258
            let table_dt = table.DataTable();
256
- 

Return to bug 30221