.widget header> h5 ' Lista de span.fw-semi-bold Pagamentos da Operação de Crédito .widget-body - if pagamentos_da_operacao.empty? h6 Nenhum registro encontrado. - else table.table.table-hover.table-responsive thead tr th width="120" Nº do Empenho th width="120" Nº da Liquidação th width="120" Nº do Pagamento th width="120" Data th width="120" Valor th width="40" align="center" tbody - pagamentos_da_operacao.each do |pagamento| tr td = pagamento.try(:empenho).try(:numero_do_empenho).to_s td = pagamento.try(:liquidacao).try(:empenho_e_numero).to_s td = pagamento.numero_formatado td = pagamento.data || pagamento.data_da_solicitacao td = pagamento.valor.to_f.real_contabil td align="center" - if pagamento.estornado span.label.label-danger ESTORNADO - else span.label.label-info = pagamento.status.try(:humanize).try(:upcase)