Created
December 6, 2011 19:56
-
-
Save allometry/1439683 to your computer and use it in GitHub Desktop.
Little Snoop HAML
This file contains 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
%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