<%= t'message.new.send_message_to', :name => link_to(h(@to_user.display_name), {:controller => 'user', :action => 'view', :display_name => @to_user.display_name}) %>

<%= error_messages_for 'message' %> <% form_for :message, :url => { :action => "new", :display_name => @to_user.display_name } do |f| %>
<%= t'message.new.subject' %> <%= f.text_field :title, :size => 60, :value => @subject %>
<%= t'message.new.body' %> <%= f.text_area :body, :cols => 80, :value => @body %>
<%= submit_tag t('message.new.send_button') %>
<% end %>
<%= link_to t('message.new.back_to_inbox'), :controller => 'message', :action => 'inbox', :display_name => @user.display_name %>