Skip to content

Instantly share code, notes, and snippets.

@sivabudh
Created May 15, 2012 06:49
Show Gist options
  • Save sivabudh/2699639 to your computer and use it in GitHub Desktop.
Save sivabudh/2699639 to your computer and use it in GitHub Desktop.
Level 3: Challenge 5
<% zombies = Zombie.all %>
<ul>
<% zombies.each do |zombie| %>
<li>
<%= link_to zombie.name, edit_zombie_path(zombie) %>
</li>
<% end %>
</ul>
<%= link_to 'New Zombie', new_zombie_path %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment