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

(-)a/admin/columns_settings.yml (-13 / +15 lines)
Lines 2028-2033 modules: Link Here
2028
            -
2028
            -
2029
              columnname: item_coursereserves
2029
              columnname: item_coursereserves
2030
2030
2031
      subscriptionst:
2032
        columns:
2033
            -
2034
              columnname: serial_serialseq
2035
            -
2036
              columnname: serial_publisheddate
2037
            -
2038
              columnname: serial_planneddate
2039
            -
2040
              columnname: serial_status
2041
            -
2042
              columnname: serial_notes
2043
2044
    course_list:
2031
      course_reserves_table:
2045
      course_reserves_table:
2032
        columns:
2046
        columns:
2033
            -
2047
            -
Lines 2045-2063 modules: Link Here
2045
            -
2059
            -
2046
              columnname: notes
2060
              columnname: notes
2047
2061
2048
      subscriptionst:
2062
    course_items:
2049
        columns:
2050
            -
2051
              columnname: serial_serialseq
2052
            -
2053
              columnname: serial_publisheddate
2054
            -
2055
              columnname: serial_planneddate
2056
            -
2057
              columnname: serial_status
2058
            -
2059
              columnname: serial_notes
2060
2061
      course-items-table:
2063
      course-items-table:
2062
        columns:
2064
        columns:
2063
            -
2065
            -
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-course-details.tt (-1 / +1 lines)
Lines 123-129 Link Here
123
    [% INCLUDE 'columns_settings.inc' %]
123
    [% INCLUDE 'columns_settings.inc' %]
124
    <script>
124
    <script>
125
        $(document).ready(function() {
125
        $(document).ready(function() {
126
            columns_settings = [% TablesSettings.GetColumns( 'opac', 'biblio-detail', 'course-items-table', 'json' ) | $raw %];
126
            columns_settings = [% TablesSettings.GetColumns( 'opac', 'course_items', 'course-items-table', 'json' ) | $raw %];
127
            KohaTable("#course-items-table", {
127
            KohaTable("#course-items-table", {
128
                "dom": '<"top"<"table_controls"f>>t',
128
                "dom": '<"top"<"table_controls"f>>t',
129
                "sorting": [[ 1, "asc" ]],
129
                "sorting": [[ 1, "asc" ]],
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-course-reserves.tt (-2 / +1 lines)
Lines 73-79 Link Here
73
    [% INCLUDE 'columns_settings.inc' %]
73
    [% INCLUDE 'columns_settings.inc' %]
74
    <script>
74
    <script>
75
        $(document).ready(function() {
75
        $(document).ready(function() {
76
            columns_settings = [% TablesSettings.GetColumns( 'opac', 'biblio-detail', 'course_reserves_table', 'json' ) | $raw %]
76
            columns_settings = [% TablesSettings.GetColumns( 'opac', 'course_list', 'course_reserves_table', 'json' ) | $raw %]
77
            KohaTable("#course_reserves_table", {
77
            KohaTable("#course_reserves_table", {
78
                "dom": '<"top"f>rt<"clear">',
78
                "dom": '<"top"f>rt<"clear">',
79
                "sorting": [[ 1, "asc" ]],
79
                "sorting": [[ 1, "asc" ]],
80
- 

Return to bug 37229