1 <h2>Send a new message to <%= h(@to_user.display_name) %></h2>
3 <% if params[:display_name] %>
4 <p>Writing a new message to <%= h(params[:display_name]) %></p>
5 <p>TODO: drop down box of your friends</p>
8 <%= error_messages_for 'message' %>
10 <% form_for :message, :url => { :action => "new", :user_id => @to_user.id } do |f| %>
14 <td><%= f.text_field :title, :size => 60, :value => @title %></td>
18 <td><%= f.text_area :body, :cols => 80, :value => @body %></td>
22 <td><%= submit_tag 'Send' %></td>
29 <%= link_to 'Back to inbox', :controller => 'message', :action => 'inbox', :display_name => @user.display_name %>