.widget header h5 ' Lista de span.fw-semi-bold Fontes de Recursos .widget-body - if fontes_de_recursos.empty? h6 Não há fontes de recursos relacionadas com essa conta. - else .table-responsive table.table.table-hover thead tr th width='5%' Código th Descrição th % th width='12%' Saldo Inicial th width='12%' Entradas th width='12%' Saídas th width='12%' Saldo tbody - fontes_de_recursos.each do |fonte_de_recursos| tr td = fonte_de_recursos.codigo_completo td = fonte_de_recursos.descricao_e_exercicio td = number_to_percentage(fonte_de_recursos.percentual_minimo_de_destinacao, precision: 1, separator: ",") td = fonte_de_recursos.total_de_saldo_inicial_por_conta(conta_bancaria).to_d.real_contabil td = fonte_de_recursos.total_de_entradas_por_conta(conta_bancaria).to_f.real_contabil td = fonte_de_recursos.total_de_saidas_por_conta(conta_bancaria).to_f.real_contabil td = fonte_de_recursos.saldo_por_conta(conta_bancaria).to_f.real_contabil