X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/aa143f047bd65e66588044e71562af6dd2863690..011cfa794a5f0d67a813b8f7969f4ecec36d74ec:/app/views/message/new.html.erb diff --git a/app/views/message/new.html.erb b/app/views/message/new.html.erb index ac8fe7f49..73d0ede2a 100644 --- a/app/views/message/new.html.erb +++ b/app/views/message/new.html.erb @@ -1,22 +1,22 @@ <% content_for :heading do %> -

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

+

<%= raw(t '.send_message_to', :name => link_to(h(@message.recipient.display_name), user_path(@message.recipient))) %>

<% end %> <%= error_messages_for 'message' %> -<%= form_for :message, :html => { :class => 'standard-form' }, :url => { :action => "new", :display_name => @this_user.display_name } do |f| %> +<%= form_for :message, :html => { :class => 'standard-form' }, :url => new_message_path(@message.recipient) do |f| %>
- - <%= f.text_field :title, :size => 60, :value => @subject %> + + <%= f.text_field :title, :size => 60, :class => "richtext_title" %>
- - <%= richtext_area :message, :body, :cols => 80, :rows => 20, :value => @body %> + + <%= richtext_area :message, :body, :cols => 80, :rows => 20 %>
- <%= submit_tag t('message.new.send_button') %> - <%= link_to t('message.new.back'), { :controller => 'message', :action => 'inbox', :display_name => @user.display_name }, :class => 'deemphasize button' %> + <%= submit_tag t('.send_button') %> + <%= link_to t('.back_to_inbox'), inbox_path(current_user), :class => 'deemphasize button' %>
<% end %>