Last active
August 29, 2015 14:02
-
-
Save StephenFiser/0a485e51f39cdf7cb6c4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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