X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/7d52305640d647d97c7904e447ad48e6d0e2f694..99903362cab3d151a0fc48edb03b946615d3c68a:/app/views/message/new.rhtml diff --git a/app/views/message/new.rhtml b/app/views/message/new.rhtml index 4075d543e..a356692c8 100644 --- a/app/views/message/new.rhtml +++ b/app/views/message/new.rhtml @@ -1,20 +1,24 @@ -<% display_name = (User.find_by_id(params[:user_id])).display_name %> - -

Send a new message to <%= display_name %>

- -<% if params[:display_name] %> -

Writing a new message to <%= params[:display_name] %>

-

TODO: drop down box of your friends

-<%end%> +

<%= t'message.new.send_message_to', :name => h(@to_user.display_name) %>

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