index.html.erb 386 Bytes
<h1>Listing questions</h1>

<table>
  <tr>
  </tr>

<% @questions.each do |question| %>
  <tr>
    <td><%= link_to 'Show', question %></td>
    <td><%= link_to 'Edit', edit_question_path(question) %></td>
    <td><%= link_to 'Destroy', question, :confirm => 'Are you sure?', :method => :delete %></td>
  </tr>
<% end %>
</table>

<br />

<%= link_to 'New question', new_question_path %>