1
0
mirror of https://github.com/projekteuler/projekteuler.git synced 2025-12-10 08:46:41 +01:00
projekteuler/app/views/problems/index.html.erb

28 lines
604 B
Plaintext

<h1>Listing problems</h1>
<table>
<thead>
<tr>
<th>Title</th>
<th>Content</th>
<th colspan="3"></th>
</tr>
</thead>
<tbody>
<% @problems.each do |problem| %>
<tr>
<td><%= problem.title %></td>
<td><%= problem.content %></td>
<td><%= link_to 'Show', problem %></td>
<td><%= link_to 'Edit', edit_problem_path(problem) %></td>
<td><%= link_to 'Destroy', problem, method: :delete, data: { confirm: 'Are you sure?' } %></td>
</tr>
<% end %>
</tbody>
</table>
<br>
<%= link_to 'New Problem', new_problem_path %>