29 lines
815 B
Text
29 lines
815 B
Text
<h2>Send a new message to <%= h(@to_user.display_name) %></h2>
|
|
|
|
<% if params[:display_name] %>
|
|
<p>Writing a new message to <%= h(params[:display_name]) %></p>
|
|
<p>TODO: drop down box of your friends</p>
|
|
<%end%>
|
|
|
|
<%= error_messages_for 'message' %>
|
|
|
|
<% form_for :message, :url => { :action => "new", :user_id => @to_user.id } do |f| %>
|
|
<table>
|
|
<tr valign="top">
|
|
<th>Subject</th>
|
|
<td><%= f.text_field :title, :size => 60, :value => @title %></td>
|
|
</tr>
|
|
<tr valign="top">
|
|
<th>Body</th>
|
|
<td><%= f.text_area :body, :cols => 80, :value => @body %></td>
|
|
</tr>
|
|
<tr>
|
|
<th></th>
|
|
<td><%= submit_tag 'Send' %></td>
|
|
</tr>
|
|
</table>
|
|
<% end %>
|
|
|
|
<br />
|
|
|
|
<%= link_to 'Back to inbox', :controller => 'message', :action => 'inbox', :display_name => @user.display_name %>
|