Skip to content

Instantly share code, notes, and snippets.

@allometry
Created December 6, 2011 19:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save allometry/1439683 to your computer and use it in GitHub Desktop.
Save allometry/1439683 to your computer and use it in GitHub Desktop.
Little Snoop HAML
%table
%tbody
%tr
%td Victim Date
%td Victim Name
%td Victim IP
%td Actions
- victims.each do |victim|
%tr
%td=victim.created
%td=victim.name
%td=victim.ip
%td
%a{:title => "Delete #{victim.name}", :href => "/victims/delete/#{victim.id}"} Delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment