28 lines
571 B
Plaintext
28 lines
571 B
Plaintext
<h1>Listing questions</h1>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Title</th>
|
|
<th></th>
|
|
<th></th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<% @questions.each do |question| %>
|
|
<tr>
|
|
<td><%= question.title %></td>
|
|
<td><%= link_to 'Show', question %></td>
|
|
<td><%= link_to 'Edit', edit_question_path(question) %></td>
|
|
<td><%= link_to 'Destroy', question, method: :delete, data: { confirm: 'Are you sure?' } %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
|
|
<br>
|
|
|
|
<%= link_to 'New Question', new_question_path %>
|