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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/authtypes.tt (-7 / +12 lines)
Lines 14-20 Link Here
14
    $(document).ready(function() {
14
    $(document).ready(function() {
15
        $("#authtypes").dataTable($.extend(true, {}, dataTablesDefaults, {
15
        $("#authtypes").dataTable($.extend(true, {}, dataTablesDefaults, {
16
            "aoColumnDefs": [
16
            "aoColumnDefs": [
17
                { "aTargets": [ -1, -2, -3 ], "bSortable": false, "bSearchable": false },
17
                { "aTargets": [ -1 ], "bSortable": false, "bSearchable": false },
18
            ],
18
            ],
19
            "sPaginationType": "four_button"
19
            "sPaginationType": "four_button"
20
        }));
20
        }));
Lines 151-158 Link Here
151
            <th>Summary</th>
151
            <th>Summary</th>
152
            <th>Auth field copied</th>
152
            <th>Auth field copied</th>
153
            <th>&nbsp;</th>
153
            <th>&nbsp;</th>
154
            <th>Edit</th>
155
            <th>Delete</th>
156
        </tr>
154
        </tr>
157
        </thead>
155
        </thead>
158
        <tbody>
156
        <tbody>
Lines 162-170 Link Here
162
                <td>[% authority_type.authtypetext %]</td>
160
                <td>[% authority_type.authtypetext %]</td>
163
                <td>[% authority_type.summary %]</td>
161
                <td>[% authority_type.summary %]</td>
164
                <td>[% authority_type.auth_tag_to_report %]</td>
162
                <td>[% authority_type.auth_tag_to_report %]</td>
165
                <td><a href="auth_tag_structure.pl?authtypecode=[% authority_type.authtypecode %]" class="button parameters" >MARC structure</a></td>
163
                <td>
166
                <td><a href="/cgi-bin/koha/admin/authtypes.pl?op=add_form&amp;authtypecode=[% authority_type.authtypecode |html %]">Edit</a></td>
164
                  <div class="dropdown">
167
                <td><a href="/cgi-bin/koha/admin/authtypes.pl?op=delete_confirm&amp;authtypecode=[% authority_type.authtypecode |html %]">Delete</a></td>
165
                    <a class="btn btn-mini dropdown-toggle" id="authtypeactions[% authority_type.authtypecode %]" role="button" data-toggle="dropdown" href="#">
166
                      Actions <b class="caret"></b></a>
167
                    <ul class="dropdown-menu pull-right" role="menu" aria-labelledby="authtypeactions[% authority_type.authtypecode %]">
168
                      <li><a href="auth_tag_structure.pl?authtypecode=[% authority_type.authtypecode %]" class="button parameters"><i class="fa fa-eye"></i> MARC structure</a></li>
169
                      <li><a href="/cgi-bin/koha/admin/authtypes.pl?op=add_form&amp;authtypecode=[% authority_type.authtypecode |html %]"><i class="fa fa-pencil"></i> Edit</a></li>
170
                      <li><a href="/cgi-bin/koha/admin/authtypes.pl?op=delete_confirm&amp;authtypecode=[% authority_type.authtypecode |html %]"><i class="fa fa-trash"></i> Delete</a></li>
171
                    </ul>
172
                  </div>
173
                </td>
168
            </tr>
174
            </tr>
169
        [% END %]
175
        [% END %]
170
        <tbody>
176
        <tbody>
171
- 

Return to bug 15988