= javascript_include_tag "base/pessoas/pesquisa" - if @agentes_publicos_municipais.empty? h6 Nenhum registro encontrado. - else .table-responsive style="font-size: 90%" table.table.table-hover thead tr th width="70" th Nome th CPF th Telefone tbody - @agentes_publicos_municipais.each do |agente| tr.seleciona_pessoa data-id="#{agente.id}" data-nome="#{agente.try(:cpf_e_nome)}" data-field="contabilidade_diaria_agente_publico_municipal_id" td button class="btn btn-default btn-sm mb-xs seleciona_pessoa" title="Seleciona" type="button" data-id="#{agente.id}" data-nome="#{agente.try(:cpf_e_nome)}" data-field="contabilidade_diaria_agente_publico_municipal_id" span class="glyphicon glyphicon-ok-sign" td = agente.nome td = agente.cpf.try(:as_cpf) td = agente.telefone.try(:as_telefone) = will_paginate @agentes_publicos_municipais, previous_label: "<", next_label: ">", remote: true