blob: 303f0bb47e115cfbf442b9da77b19aea0864ae1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
= form_for @discussion do |f|
%p
= f.label :recipient_tokens
%br
= select_tag "discussion[recipient_tokens]", options_from_collection_for_select(User.all, :id, Inboxes::config.user_name), :multiple => true, :size => "4"
%p
= f.fields_for :messages do |j|
= j.label :body
%br
= j.text_area :body
%p= f.submit
|