Created
March 7, 2012 23:45
-
-
Save jraczak/1997335 to your computer and use it in GitHub Desktop.
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
<% 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