Created
July 8, 2016 17:18
-
-
Save beaugaines/4392ab8080d5849ad1bf435053ff8257 to your computer and use it in GitHub Desktop.
complete items with checkbox
This file contains hidden or 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
<% @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