.widget header> h5 | Auditoria .widget-body - if @logs.empty? h6 | Nenhum registro encontrado. - else .table-responsive table.table.table-hover thead tr th | Nome th |CPF th | Ação th | Objeto th | Data e Hora th[width="90"] tbody - @logs.each do |log| tr td = log.usuario.try(:nome_completo) || "Internamente" td = CPF.new(log.try(:usuario).try(:cpf)).formatted td = log.controller_formatado td = "#{log.item_type} ( ID: #{log.item_id} )" td = log.created_at td = botao_com_permissao auditoria_path(log), {acao: :show}, { \ class_icone:'icone-detalhar', params: { \ method: :get, class: 'btn btn-default btn-sm mb-xs', title: "Detalhes", }, } = will_paginate@logs, previous_label: "<", next_label: ">"