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

(-)a/koha-tmpl/intranet-tmpl/prog/en/js/categories.js (-2 / +2 lines)
Lines 23-29 jQuery.validator.addMethod( "enrollment_period", function(){ Link Here
23
$(document).ready(function() {
23
$(document).ready(function() {
24
    $("#table_categorie").dataTable($.extend(true, {}, dataTablesDefaults, {
24
    $("#table_categorie").dataTable($.extend(true, {}, dataTablesDefaults, {
25
        "aoColumnDefs": [{
25
        "aoColumnDefs": [{
26
            "aTargets": [-1, -2],
26
            "aTargets": [-1],
27
            "bSortable": false,
27
            "bSortable": false,
28
            "bSearchable": false
28
            "bSearchable": false
29
        }, {
29
        }, {
Lines 94-97 $(document).ready(function() { Link Here
94
        }
94
        }
95
95
96
    });
96
    });
97
});
97
});
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categories.tt (-5 / +5 lines)
Lines 318-325 Link Here
318
                    [% END %]
318
                    [% END %]
319
                    <th scope="col">Branches limitations</th>
319
                    <th scope="col">Branches limitations</th>
320
                    <th scope="col">Default privacy</th>
320
                    <th scope="col">Default privacy</th>
321
                    <th scope="col">&nbsp; </th>
321
                    <th scope="col">Actions</th>
322
                    <th scope="col">&nbsp; </th>
323
                </tr>
322
                </tr>
324
            </thead>
323
            </thead>
325
            <tbody>
324
            <tbody>
Lines 404-411 Link Here
404
                                Forever
403
                                Forever
405
                            [% END %]
404
                            [% END %]
406
                        </td>
405
                        </td>
407
                        <td class="actions"><a class="btn btn-mini" href="/cgi-bin/koha/admin/categories.pl?op=add_form&amp;categorycode=[% category.categorycode |uri %]"><i class="fa fa-pencil"></i> Edit</a></td>
406
                        <td class="actions">
408
                        <td class="actions"><a class="btn btn-mini" href="/cgi-bin/koha/admin/categories.pl?op=delete_confirm&amp;categorycode=[% category.categorycode |uri %]"><i class="fa fa-trash"></i> Delete</a></td>
407
                            <a class="btn btn-mini" href="/cgi-bin/koha/admin/categories.pl?op=add_form&amp;categorycode=[% category.categorycode |uri %]"><i class="fa fa-pencil"></i> Edit</a>
408
                            <a class="btn btn-mini" href="/cgi-bin/koha/admin/categories.pl?op=delete_confirm&amp;categorycode=[% category.categorycode |uri %]"><i class="fa fa-trash"></i> Delete</a>
409
                        </td>
409
                    </tr>
410
                    </tr>
410
                [% END %]
411
                [% END %]
411
            </tbody>
412
            </tbody>
412
- 

Return to bug 16794