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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/columns_settings.inc (-2 / +2 lines)
Lines 165-172 function KohaTable(id_selector, dt_parameters, table_settings, add_filters) { Link Here
165
        dt_parameters[ "buttons" ].push(
165
        dt_parameters[ "buttons" ].push(
166
            {
166
            {
167
                className: "dt_button_configure_table",
167
                className: "dt_button_configure_table",
168
                titleAttr: _("Configure this table"),
168
                titleAttr: _("Table settings"),
169
                text: '<i class="fa fa-lg fa-wrench"></i> <span class="dt-button-text">' + _("Configure this table") + '</span>',
169
                text: '<i class="fa fa-lg fa-wrench"></i> <span class="dt-button-text">' + _("Configure") + '</span>',
170
                action: function() {
170
                action: function() {
171
                    window.location = '/cgi-bin/koha/admin/columns_settings.pl?module=' + table_settings['module'] + '&page=' + table_settings['page'] + '&table=' + table_settings['table'];
171
                    window.location = '/cgi-bin/koha/admin/columns_settings.pl?module=' + table_settings['module'] + '&page=' + table_settings['page'] + '&table=' + table_settings['table'];
172
                },
172
                },
(-)a/koha-tmpl/intranet-tmpl/prog/js/datatables.js (-3 / +2 lines)
Lines 817-824 jQuery.fn.dataTable.ext.errMode = function(settings, note, message) { Link Here
817
            settings[ "buttons" ].push(
817
            settings[ "buttons" ].push(
818
                {
818
                {
819
                    className: "dt_button_configure_table",
819
                    className: "dt_button_configure_table",
820
                    titleAttr: __("Configure this table"),
820
                    titleAttr: __("Table settings"),
821
                    text: '<i class="fa fa-lg fa-wrench"></i> <span class="dt-button-text">' + __("Configure this table") + '</span>',
821
                    text: '<i class="fa fa-lg fa-wrench"></i> <span class="dt-button-text">' + __("Configure") + '</span>',
822
                    action: function() {
822
                    action: function() {
823
                        window.location = '/cgi-bin/koha/admin/columns_settings.pl?module=' + table_settings['module'] + '&page=' + table_settings['page'] + '&table=' + table_settings['table'];
823
                        window.location = '/cgi-bin/koha/admin/columns_settings.pl?module=' + table_settings['module'] + '&page=' + table_settings['page'] + '&table=' + table_settings['table'];
824
                    },
824
                    },
825
- 

Return to bug 31428