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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/transport-cost-matrix.tt (-2 / +1 lines)
Lines 120-126 Link Here
120
120
121
            $('#celldiv_'+cost_id).html(
121
            $('#celldiv_'+cost_id).html(
122
                '<input type="text" name="cost_'+cost_id+'" class="cost_input" size="4" value="'+$.trim(cost)+'" />'+
122
                '<input type="text" name="cost_'+cost_id+'" class="cost_input" size="4" value="'+$.trim(cost)+'" />'+
123
                '<br/>Disable <input name="disable_'+cost_id+'" value="1" class="disable_transport_cost" type="checkbox" '+(disabled ? 'checked' : '')+' />'
123
                '<br/>' + _("Disable ") + '<input name="disable_'+cost_id+'" value="1" class="disable_transport_cost" type="checkbox" '+(disabled ? 'checked' : '')+' />'
124
            );
124
            );
125
            disable_transport_cost(cost_id, disabled);
125
            disable_transport_cost(cost_id, disabled);
126
        }
126
        }
127
- 

Return to bug 20141