Skip to content

Instantly share code, notes, and snippets.

@beaugaines
Created July 8, 2016 17:18
Show Gist options
  • Save beaugaines/4392ab8080d5849ad1bf435053ff8257 to your computer and use it in GitHub Desktop.
Save beaugaines/4392ab8080d5849ad1bf435053ff8257 to your computer and use it in GitHub Desktop.
complete items with checkbox
<% @items.each do |item| %>
<p>
<%= item.name %>
<%= form_for [current_user, item], method: :delete do |f| %>
<%= check_box_tag :complete, nil, false, onclick: "this.form.submit()" %>
<%= label_tag :complete, 'Complete' %>
<% end %>
</p>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment