Skip to content

Instantly share code, notes, and snippets.

@joshskeen
Created July 8, 2012 18:16
Show Gist options
  • Save joshskeen/3072142 to your computer and use it in GitHub Desktop.
Save joshskeen/3072142 to your computer and use it in GitHub Desktop.
div class="row"
div class="span5"
h2 todo list:
div
table width=470 class="table-striped table-condensed table-bordered"
tr
th name
th description
th complete
-for item in @items do
tr
td=item.name
td=item.description
td
=link_to 'complete', item, :method => :delete, :class => "btn"
=link_to 'delete', item, :method => :delete, :class => "btn", :confirm => "are you sure you want to delete #{item.name}?"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment