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

(-)a/admin/columns_settings.yml (-1 / +18 lines)
Lines 2173-2179 modules: Link Here
2173
              columnname: renew
2173
              columnname: renew
2174
            -
2174
            -
2175
              columnname: fines
2175
              columnname: fines
2176
2177
      opac_user_relative_issues_table:
2176
      opac_user_relative_issues_table:
2178
        columns:
2177
        columns:
2179
            -
2178
            -
Lines 2186-2191 modules: Link Here
2186
              columnname: callnumber
2185
              columnname: callnumber
2187
            -
2186
            -
2188
              columnname: relative
2187
              columnname: relative
2188
      readingrec:
2189
        columns:
2190
            -
2191
              columnname: type
2192
            -
2193
              columnname: title
2194
            -
2195
              columnname: author
2196
            -
2197
              columnname: item_type
2198
            -
2199
              columnname: callnumber
2200
            -
2201
              columnname: vol_info
2202
            -
2203
              columnname: date
2204
            -
2205
              columnname: links
2189
2206
2190
  serials:
2207
  serials:
2191
    subscription-detail:
2208
    subscription-detail:
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-readingrecord.tt (-11 / +11 lines)
Lines 114-129 Link Here
114
        <caption class="sr-only">Checkout history</caption>
114
        <caption class="sr-only">Checkout history</caption>
115
        <thead>
115
        <thead>
116
            <tr>
116
            <tr>
117
                <th style="display:none;" class="noExport">Type</th>
117
                <th data-colname="type" style="display:none;" class="noExport">Type</th>
118
                <th class="NoSort noExport"></th>
118
                <th class="NoSort noExport"></th>
119
                <th class="all anti-the">Title</th>
119
                <th data-colname="title" class="all anti-the">Title</th>
120
                <th>Author</th>
120
                <th data-colname="author">Author</th>
121
                <th>Item type</th>
121
                <th data-colname="item_type">Item type</th>
122
                <th>Call number</th>
122
                <th data-colname="callnumber">Call number</th>
123
                <th>Vol info</th>
123
                <th data-colname="vol_info">Vol info</th>
124
                <th>Date</th>
124
                <th data-colname="date">Date</th>
125
                [% IF Koha.Preference('OPACMySummaryHTML') %]
125
                [% IF Koha.Preference('OPACMySummaryHTML') %]
126
                    <th class="NoSort noExport">Links</th>
126
                    <th data-colname="links" class="NoSort noExport">Links</th>
127
                [% END %]
127
                [% END %]
128
                <th></th>
128
                <th></th>
129
            </tr>
129
            </tr>
Lines 234-242 Link Here
234
            $('#sortform').submit();
234
            $('#sortform').submit();
235
        });
235
        });
236
236
237
        var columns_settings = []; // Empty because there are no columns we want to be configurable
237
        var columns_settings = [% TablesSettings.GetColumns( 'opac', 'patron_details', 'readingrec', 'json') | $raw %];
238
        var table = KohaTable("#readingrec", {
238
        var table = KohaTable("#readingrec", {
239
            "dom": '<"top"<"table_entries"i><"table_controls"fB>>t',
239
            "dom": '<"top"<"table_entries"><"table_controls"fB>>t',
240
            "bKohaColumnsUseNames": true,
240
            "autoWidth": false,
241
            "autoWidth": false,
241
            "language": {
242
            "language": {
242
                "search": "_INPUT_",
243
                "search": "_INPUT_",
243
- 

Return to bug 30221