<%= link_to 'Edit', '#', class: 'edit-question-link' %>
|
<%= f.hidden_field :_destroy %>
<%= link_to "Remove", '#', class: "remove_fields" %>
<%= f.label(:name) %>
|
<%= f.text_field :name, class: 'askwidget-inputfield' %> |
<%= f.label(:instructions, 'Help Text') %>
|
<%= f.text_field :instructions, class: 'askwidget-inputfield' %> |
<%= f.label(:type) %>
|
<%= f.collection_select :type, Question::TYPES, :to_s, :titleize, class: 'askwidget-inputfield' %> |
<%= render 'asker/choices', f: f %>