Skip to content

Instantly share code, notes, and snippets.

@knwang
Created October 5, 2011 00:33
Show Gist options
  • Save knwang/1263278 to your computer and use it in GitHub Desktop.
Save knwang/1263278 to your computer and use it in GitHub Desktop.
Proofing_oven: Candidates list view
%table.standard
%thead
%tr
- ["Name", "Phone", "Email", "Github", "Twitter", "Local", "Willing to Relocate"].each do |th|
%th= th
%tbody
- candidates.each do |candidate|
%tr
%td= candidate.full_name
%td= candidate.phone
%td= candidate.email
%td= candidate.github
%td= candidate.twitter
%td= candidate.local?
%td= candidate.willing_to_relocate?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment