1 2 3 4 5 6 7 |
<% form_for @notification, {:action => "send" }, :method => "POST" do |f| %> <%= f.text_field :to %> <%= f.text_field :from %> <%= f.text_field :text %> <%= f.submit "Send" %> <% end %> |
1 2 3 4 5 6 7 |
<% form_for @notification, {:action => "send" }, :method => "POST" do |f| %> <%= f.text_field :to %> <%= f.text_field :from %> <%= f.text_field :text %> <%= f.submit "Send" %> <% end %> |