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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/oai_servers.tt (-5 / +4 lines)
Lines 134-140 Link Here
134
    <div class="page-section">
134
    <div class="page-section">
135
    <table id="serverst">
135
    <table id="serverst">
136
136
137
        <thead><tr><th>ID</th><th>Repository name</th><th>Endpoint</th><th>[% tp('OAI', 'Set') | html %]</th><th>Data format</th><th>Record type</th><th class="noExport">Actions</th>
137
        <thead><tr><th>ID</th><th>Repository name</th><th>Endpoint</th><th>[% tp('OAI', 'Set') | html %]</th><th>Data format</th><th>Record type</th><th class="noExport NoSort">Actions</th>
138
        </tr></thead>
138
        </tr></thead>
139
        <tbody>
139
        <tbody>
140
        [% FOREACH loo IN loop %]
140
        [% FOREACH loo IN loop %]
Lines 220-229 Link Here
220
        [% ELSE %]
220
        [% ELSE %]
221
            $(document).ready(function() {
221
            $(document).ready(function() {
222
                $("#serverst").dataTable($.extend(true, {}, dataTablesDefaults, {
222
                $("#serverst").dataTable($.extend(true, {}, dataTablesDefaults, {
223
                    "aoColumnDefs": [
223
                    "columnDefs": [
224
                        { "aTargets": [-1], "bSortable": false, "bSearchable": false },
224
                        { 'sortable': false, 'targets': [ 'NoSort' ] }
225
                    ],
225
                    ],
226
                    "sPaginationType": "full"
226
                    "pagingType": "full",
227
                }));
227
                }));
228
                $(".delete").on("click",function(e){
228
                $(".delete").on("click",function(e){
229
                    var servername = $(this).data("servername");
229
                    var servername = $(this).data("servername");
230
- 

Return to bug 35659