Files
grecia/app/components/admin/budgets_wizard/creation_timeline_component.html.erb
Javi Martín b99ce2af45 Remove duplication in timeline component
This way adding new steps will be easier.
2021-06-08 18:45:14 +02:00

8 lines
215 B
Plaintext

<ol class="creation-timeline">
<% steps.each do |step| %>
<li <%= "aria-current='step'" if step == current_step %>>
<%= t("admin.budgets_wizard.creation_timeline.#{step}") %>
</li>
<% end %>
</ol>