header> h5 ' Lista de span.fw-semi-bold Pagamentos .widget-body - if pagamentos.empty? h6 Nenhum registro encontrado. - else table.table.table-hover.table-responsive thead tr th width="120" Número th width="150" Liquidação th width="120" Data th width="140" Valor th width="120" % da Liquidação th width="120" align="center" tbody - pagamentos.each do |pagamento| tr td = link_to pagamento.numero_formatado, contabilidade_pagamento_path(pagamento), target: "_blank" td = pagamento.liquidacao.numero_e_empenho td = pagamento.data_da_solicitacao td b = pagamento.valor.try(:real_contabil) td = progressbar porcentagem: pagamento.porcentagem_da_liquidacao td align="center" - if pagamento.estornado? = raw "ESTORNADO" - else = bs_label(pagamento.status.try(:humanize).try(:upcase))