.widget header> h5 ' Lista de span.fw-semi-bold ETPS .widget-body - if @etps.empty? h6 Nenhum registro encontrado. - else .table-responsive table.table.table-hover thead tr th Número do Estudo Técnico Preliminar th Unidade Orçamentária th Valor Estimado Estudo th Quantidade de Soluções th Data com Previsão da Contratação th Status th width="150" tbody - @etps.each do |etp| tr td = etp.try(:numero_estudo) td = etp.try(:unidade_orcamentaria).try(:codigo_e_nome) td = etp.try(:valor_estimado_estudo).contabil td = etp.try(:quantidade_de_solucoes) td = etp.try(:data_previsao_contratacao) td = etp.try(:status).humanize td = link_to etp, class: "btn btn-default btn-sm mb-xs", title: "Ver Detalhes" do i.icone-detalhar = botao_com_permissao edit_licitacao_etp_path(etp), {acao: :update}, { \ class_icone:'icone-editar', params: {class: 'btn btn-default btn-sm mb-xs', title: "Editar"}, } = botao_com_permissao licitacao_etp_path(etp), {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@licitacao_etps, previous_label: "<", next_label: ">"