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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/auth_tag_structure.tt (-10 / +15 lines)
Lines 4-19 Link Here
4
    [% IF ( heading_add_tag_p ) %]› [% IF ( authtypecode ) %][% authtypecode %] Framework[% ELSE %]Default framework[% END %] › New tag[% END %]
4
    [% IF ( heading_add_tag_p ) %]› [% IF ( authtypecode ) %][% authtypecode %] Framework[% ELSE %]Default framework[% END %] › New tag[% END %]
5
    [% ELSE %]&rsaquo; [% action %][% END %][% END %][% IF ( delete_confirm ) %]&rsaquo; [% IF ( authtypecode ) %][% authtypecode %] Framework[% ELSE %]Default framework[% END %] &rsaquo; Confirm deletion[% END %][% IF ( delete_confirmed ) %]&rsaquo; [% IF ( authtypecode ) %][% authtypecode %] Framework[% ELSE %]Default framework[% END %] &rsaquo; Data deleted[% END %]</title>
5
    [% ELSE %]&rsaquo; [% action %][% END %][% END %][% IF ( delete_confirm ) %]&rsaquo; [% IF ( authtypecode ) %][% authtypecode %] Framework[% ELSE %]Default framework[% END %] &rsaquo; Confirm deletion[% END %][% IF ( delete_confirmed ) %]&rsaquo; [% IF ( authtypecode ) %][% authtypecode %] Framework[% ELSE %]Default framework[% END %] &rsaquo; Data deleted[% END %]</title>
6
[% INCLUDE 'doc-head-close.inc' %]
6
[% INCLUDE 'doc-head-close.inc' %]
7
<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.tablesorter.min.js"></script>
7
8
<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.tablesorter.pager.js"></script>
8
<link rel="stylesheet" type="text/css" href="/intranet-tmpl/prog/en/css/datatables.css" />
9
<script type="text/javascript" id="js">$(document).ready(function() {
9
<script type="text/javascript" src="/intranet-tmpl/prog/en/lib/jquery/plugins/jquery.dataTables.min.js"></script>
10
    $("#table_authtagstructure").tablesorter({
10
[% INCLUDE 'datatables-strings.inc' %]
11
        sortList: [[0,0]],
11
<script type="text/javascript" src="/intranet-tmpl/prog/en/js/datatables.js"></script>
12
        headers: { 5: { sorter: false},6: { sorter: false},7: { sorter: false}}
13
    }).tablesorterPager({container: $("#pagertable_authtagstructure"),positionFixed: false,size: 20});
14
}); </script>
15
<script type="text/javascript">
12
<script type="text/javascript">
16
//<![CDATA[
13
//<![CDATA[
14
 $(document).ready(function() {
15
    $("#table_authtagstructure").dataTable($.extend(true, {}, dataTablesDefaults, {
16
        "aoColumnDefs": [
17
            { "aTargets": [ -1, -2, -3 ], "bSortable": false, "bSearchable": false },
18
        ],
19
        "iDisplayLength": 20,
20
        "sPaginationType": "four_button"
21
    }));
22
 });
23
17
    /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
24
    /////////////////////////////////////////////////////////////////////////////////////////////////////////////////
18
    function isNotNull(f,noalert) {
25
    function isNotNull(f,noalert) {
19
        if (f.value.length ==0) {
26
        if (f.value.length ==0) {
Lines 229-235 return false; Link Here
229
    <input type="submit" value="OK" class="submit" />
236
    <input type="submit" value="OK" class="submit" />
230
</form><br />
237
</form><br />
231
<div id="pagertable_authtagstructure">
238
<div id="pagertable_authtagstructure">
232
[% INCLUDE 'table-pager.inc' perpage='20' %]
233
</div>
239
</div>
234
<table id="table_authtagstructure">
240
<table id="table_authtagstructure">
235
    <thead>
241
    <thead>
236
- 

Return to bug 9428