forked from bofh/fetsite
16 lines
335 B
Plaintext
16 lines
335 B
Plaintext
<%= semantic_form_for @survey_question do |f| %>
|
|
<%= f.inputs do %>
|
|
<%= f.input :title %>
|
|
<%= f.input :text %>
|
|
|
|
<%= f.input :parent_type, as: :hidden %>
|
|
<%= f.input :parent_id, as: :hidden %>
|
|
|
|
<%= f.input :typ %>
|
|
<% end %>
|
|
|
|
<%= f.actions do %>
|
|
<%= f.action :submit, :as => :input %>
|
|
<% end %>
|
|
<% end %>
|