.widget header h5 ' Lista de span.fw-semi-bold Lista de Serviços .widget-body - if @imposto_sobre_servicos.empty? h6 Nenhum registro encontrado. - else .table-responsive table.table.table-hover thead tr th Código th Descrição th Alíquota th width="150" tbody - @imposto_sobre_servicos.each do |imposto_sobre_servico| tr td = imposto_sobre_servico.codigo.to_s td = imposto_sobre_servico.descricao.to_s td = number_to_percentage(imposto_sobre_servico.aliquota.to_f, precision: 2) td = link_to imposto_sobre_servico, class: "btn btn-default btn-sm mb-xs", title: "Ver Detalhes" do i.icone-detalhar = botao_com_permissao edit_contabilidade_imposto_sobre_servico_path(imposto_sobre_servico), {acao: :update}, { \ class_icone:'icone-editar', params: {class: 'btn btn-default btn-sm mb-xs', title: "Editar"}, } = botao_com_permissao imposto_sobre_servico, {acao: :destroy}, { \ class_icone:'icone-excluir', params: { \ method: :delete, data: { confirm: 'Tem certeza?' }, class: 'btn btn-default btn-sm mb-xs', title: "Apagar", }, } = will_paginate @imposto_sobre_servicos, previous_label: "<", next_label: ">"