Skip to content

Instantly share code, notes, and snippets.

@ohammersmith
Created April 17, 2009 19:45
Show Gist options
  • Save ohammersmith/97212 to your computer and use it in GitHub Desktop.
Save ohammersmith/97212 to your computer and use it in GitHub Desktop.
<% form_tag(:action => "create") do %>
<% for question in @questions %>
<%= h question[:name] %>
<%= hidden_field_tag "responses[][question_id]", question[:id] %>
<%= check_box_tag "responses[][flag]" %> <br />
<% end %>
<%= submit_tag "Post" %>
<% end -%>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment