Skip to content

Instantly share code, notes, and snippets.

@beaugaines
Created November 29, 2013 22:27
Show Gist options
  • Save beaugaines/7712778 to your computer and use it in GitHub Desktop.
Save beaugaines/7712778 to your computer and use it in GitHub Desktop.
%h4= @wikiview.wiki_title
%p= @wikiview.wiki_content
%h5 Add collabos
= form_for(@wikiview.wiki) do
%table
%tr
%th Email
%th Add collabo
- @wikiview.users.each do |user|
%tr
%td= check_box_tag :user_ids, user.id, @wikiview.wiki_collabos.include?(user), name: 'wiki[user_ids][]'
%td= label_tag :user_ids, user.email
= submit_tag
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment