Skip to content

Instantly share code, notes, and snippets.

@jraczak
Created March 7, 2012 23:45
Show Gist options
  • Save jraczak/1997335 to your computer and use it in GitHub Desktop.
Save jraczak/1997335 to your computer and use it in GitHub Desktop.
<% for user in User.all %>
<%= check_box_tag "project[user_ids][]", user.id, @project.user_ids.include?(user.id), :id => dom_id(user) %>
<%= label_tag dom_id(user), (user.first_name and user.last_name), :class => "check_box_label" %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment