Files
grecia/app/components/admin/stats/sdg/goal_component.html.erb
Senén Rodero Rodríguez ebe8903c75 Investment projects statistics by participatory budget
The more recent budgets show first.

The current budget will only show the amount of sent investments
until the winner's phase.
2021-02-26 14:08:45 +01:00

20 lines
622 B
Plaintext

<div class="sdg-goal-stats">
<h3><%= goal.code_and_title %></h3>
<div class="stats-numbers">
<% stats.each do |text, amount, options = {}| %>
<%= render Admin::Stats::StatComponent.new(text: text, amount: amount, options: options) %>
<% end %>
<% bugdets_stats.each do |budget_name, *budget_stats| %>
<div class="budget-stats">
<h4><%= budget_name %></h4>
<% budget_stats.each do |text, amount, options = {}| %>
<%= render Admin::Stats::StatComponent.new(text: text, amount: amount, options: options) %>
<% end %>
</div>
<% end %>
</div>
</div>