% scope = "layouts.decidim.initiative_signature_creation_header" %>
<% options = { data: { active: false }, aria: { current: "step" } } %>
<% if fill_personal_data_step? %>
<%= content_tag :li, t("fill_personal_data", scope: ),
%w(fill_personal_data update_fill_personal_data).include?(action_name) ? options : {} %>
<% end %>
<% if sms_step? %>
<%= content_tag :li, t("sms_phone_number", scope: ),
%w(sms_phone_number update_sms_phone_number).include?(action_name) ? options : {} %>
<%= content_tag :li, t("sms_code", scope: ), %w(sms_code update_sms_code).include?(action_name) ? options : {} %>
<% end %>
<%= content_tag :li, t("finish", scope: ), action_name == "finish" ? options : {} %>