<%= form.translated :text_field, :name, aria: { label: :name } %>
<%= form.translated :editor, :description, rows: 3, aria: { label: :description } %> <%= t(".hint_html") %>
  • <%= t(".hint1_html") %>
  • <%= t(".hint2_html") %>
  • <%= t(".hint3_html") %>
<%= form.label :internal_state %>
<%= form.collection_radio_buttons :internal_state, Decidim::Proposals::Proposal::STATES.keys - [:withdrawn], :to_s, ->(mode) { t(mode, scope: "decidim.proposals.admin.proposal_answers.form") }, prompt: true do |builder| builder.label { builder.radio_button + builder.text } end %>
<%= form.select :component_constraint, availability_options_for_select, sselected: form.object.component_constraint, help_text: t(".component_constraint_help") %>