Skip to content

Instantly share code, notes, and snippets.

@dchelimsky
Forked from anonymous/gist:13713
Created September 29, 2008 23:42
Show Gist options
  • Save dchelimsky/13714 to your computer and use it in GitHub Desktop.
Save dchelimsky/13714 to your computer and use it in GitHub Desktop.
<p><b>Title:</b> <%=h @race.title %></p>
<p><b>State:</b> <%=h @race.state.title %></p>
<p><b>Racetype:</b> <%=h @race.racetype.title %></p>
<hr>
<h3>Questions</h3>
<% form_tag :action => :manage_questions, :id => @race do %>
<table>
<tr>
<th>Question</th>
<th>Include in Survey</th>
</tr>
<% @questions.each do |question| %>
<tr>
<td><%=h question.text %></td>
<td><%= check_box_tag 'race[question_ids][]', question.id, @race.questions.include?(question) %></td>
</tr>
<% end %>
</table>
<% end %>
<%= link_to 'Back', races_path %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment