|
Lines 14-20
Link Here
|
| 14 |
$(document).ready(function() { |
14 |
$(document).ready(function() { |
| 15 |
$("#table_categorie").dataTable($.extend(true, {}, dataTablesDefaults, { |
15 |
$("#table_categorie").dataTable($.extend(true, {}, dataTablesDefaults, { |
| 16 |
"aoColumnDefs": [{ |
16 |
"aoColumnDefs": [{ |
| 17 |
"aTargets": [-1, -2], |
17 |
"aTargets": [ -1 ], |
| 18 |
"bSortable": false, |
18 |
"bSortable": false, |
| 19 |
"bSearchable": false |
19 |
"bSearchable": false |
| 20 |
}, { |
20 |
}, { |
|
Lines 402-409
Link Here
|
| 402 |
[% END %] |
402 |
[% END %] |
| 403 |
<th scope="col">Branches limitations</th> |
403 |
<th scope="col">Branches limitations</th> |
| 404 |
<th scope="col">Default privacy</th> |
404 |
<th scope="col">Default privacy</th> |
| 405 |
<th scope="col"> </th> |
405 |
<th scope="col">Actions</th> |
| 406 |
<th scope="col"> </th> |
|
|
| 407 |
</tr> |
406 |
</tr> |
| 408 |
</thead> |
407 |
</thead> |
| 409 |
<tbody> |
408 |
<tbody> |
|
Lines 488-495
Link Here
|
| 488 |
Forever |
487 |
Forever |
| 489 |
[% END %] |
488 |
[% END %] |
| 490 |
</td> |
489 |
</td> |
| 491 |
<td><a href="/cgi-bin/koha/admin/categories.pl?op=add_form&categorycode=[% category.categorycode |uri %]">Edit</a></td> |
490 |
<td class="actions"> |
| 492 |
<td><a href="/cgi-bin/koha/admin/categories.pl?op=delete_confirm&categorycode=[% category.categorycode |uri %]">Delete</a></td> |
491 |
<a href="/cgi-bin/koha/admin/categories.pl?op=add_form&categorycode=[% category.categorycode |uri %]" class="btn btn-mini"><i class="fa fa-pencil"></i> Edit</a> |
|
|
492 |
<a href="/cgi-bin/koha/admin/categories.pl?op=delete_confirm&categorycode=[% category.categorycode |uri %]" class="btn btn-mini"><i class="fa fa-trash"></i> Delete</a> |
| 493 |
</td> |
| 493 |
</tr> |
494 |
</tr> |
| 494 |
[% END %] |
495 |
[% END %] |
| 495 |
</tbody> |
496 |
</tbody> |
| 496 |
- |
|
|