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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt (-14 / +7 lines)
Lines 19-25 Link Here
19
    $(document).ready(function() {
19
    $(document).ready(function() {
20
        $("#branchest").dataTable($.extend(true, {}, dataTablesDefaults, {
20
        $("#branchest").dataTable($.extend(true, {}, dataTablesDefaults, {
21
            "aoColumnDefs": [
21
            "aoColumnDefs": [
22
                { "aTargets": [ -1, -2 ], "bSortable": false, "bSearchable": false },
22
                { "aTargets": [ -1 ], "bSortable": false, "bSearchable": false },
23
            ],
23
            ],
24
            "iDisplayLength": 10,
24
            "iDisplayLength": 10,
25
            "sPaginationType": "four_button"
25
            "sPaginationType": "four_button"
Lines 227-234 tinyMCE.init({ Link Here
227
                    <th>Address</th>
227
                    <th>Address</th>
228
                    <th>Properties</th>
228
                    <th>Properties</th>
229
                    <th>IP</th>
229
                    <th>IP</th>
230
                    <th>&nbsp;</th>
230
                    <th>Actions</th>
231
                    <th>&nbsp;</th>
232
                </tr>
231
                </tr>
233
            </thead>
232
            </thead>
234
            <tbody>
233
            <tbody>
Lines 270-279 tinyMCE.init({ Link Here
270
                        </td>
269
                        </td>
271
                        <td>[% library.branchip %]</td>
270
                        <td>[% library.branchip %]</td>
272
                        <td>
271
                        <td>
273
                            <a href="/cgi-bin/koha/admin/branches.pl?op=add_form&amp;branchcode=[% library.branchcode %]">Edit</a>
272
                            <a class="btn btn-mini" href="/cgi-bin/koha/admin/branches.pl?op=add_form&amp;branchcode=[% library.branchcode %]"><i class="fa fa-pencil"></i> Edit</a>
274
                        </td>
273
                            <a class="btn btn-mini" href="/cgi-bin/koha/admin/branches.pl?op=delete_confirm&amp;branchcode=[% library.branchcode %]"><i class="fa fa-trash"></i> Delete</a>
275
                        <td>
276
                            <a href="/cgi-bin/koha/admin/branches.pl?op=delete_confirm&amp;branchcode=[% library.branchcode %]">Delete</a>
277
                        </td>
274
                        </td>
278
                    </tr>
275
                    </tr>
279
                [% END %]
276
                [% END %]
Lines 293-300 tinyMCE.init({ Link Here
293
                            <th>Name</th>
290
                            <th>Name</th>
294
                            <th>Code</th>
291
                            <th>Code</th>
295
                            <th>Description</th>
292
                            <th>Description</th>
296
                            <th>&nbsp;</th>
293
                            <th>Actions</th>
297
                            <th>&nbsp;</th>
298
                        </tr>
294
                        </tr>
299
                    </thead>
295
                    </thead>
300
                    <tbody>
296
                    <tbody>
Lines 304-313 tinyMCE.init({ Link Here
304
                                <td>[% category.categorycode %]</td>
300
                                <td>[% category.categorycode %]</td>
305
                                <td>[% category.codedescription %]</td>
301
                                <td>[% category.codedescription %]</td>
306
                                <td>
302
                                <td>
307
                                  <a href="/cgi-bin/koha/admin/branches.pl?categorycode=[% category.categorycode %]&amp;op=add_form_category">Edit</a>
303
                                  <a class="btn btn-mini" href="/cgi-bin/koha/admin/branches.pl?categorycode=[% category.categorycode %]&amp;op=add_form_category"><i class="fa fa-pencil"></i> Edit</a>
308
                                </td>
304
                                  <a class="btn btn-mini" href="/cgi-bin/koha/admin/branches.pl?categorycode=[% category.categorycode %]&amp;op=delete_confirm_category"><i class="fa fa-trash"></i> Delete</a>
309
                                <td>
310
                                    <a href="/cgi-bin/koha/admin/branches.pl?categorycode=[% category.categorycode %]&amp;op=delete_confirm_category">Delete</a>
311
                                </td>
305
                                </td>
312
                            </tr>
306
                            </tr>
313
                        [% END %]
307
                        [% END %]
314
- 

Return to bug 15995