Skip to content

Instantly share code, notes, and snippets.

@StephenFiser
Last active August 29, 2015 14:02
Show Gist options
  • Select an option

  • Save StephenFiser/5338c48adc75137d3588 to your computer and use it in GitHub Desktop.

Select an option

Save StephenFiser/5338c48adc75137d3588 to your computer and use it in GitHub Desktop.
<h3>New Todo Item:</h3>
<%= render 'form' %>
<h5>All Todos</h5>
<table>
<thead>
<tr>
<th>Title</th>
<th colspan="3"></th>
</tr>
</thead>
<tbody>
<% @todos.each do |todo| %>
<tr>
<td><input type="checkbox"><%= todo.title %></td>
<td><%= link_to 'Edit', edit_todo_path(todo) %></td>
<td><%= link_to 'Destroy', todo, method: :delete, data: { confirm: 'Are you sure?' } %></td>
</tr>
<% end %>
</tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment