.widget header> h5 ' Lista de span.fw-semi-bold Pagamentos do Convênio .widget-body - if pagamentos_do_convenio.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_do_convenio.each do |pagamento| tr td = pagamento.empenho.numero_do_empenho.to_s td = pagamento.liquidacao.empenho_e_numero 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)