X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/aa52ebe6749ba1ea43030f173bfe2101d0f77dc3..1e54573bae7eed568e99ebc0b0d448170f08c880:/app/views/message/new.rhtml diff --git a/app/views/message/new.rhtml b/app/views/message/new.rhtml index 6e268e905..27c501322 100644 --- a/app/views/message/new.rhtml +++ b/app/views/message/new.rhtml @@ -3,18 +3,29 @@

Send a new message to <%= display_name %>

<% if params[:display_name] %> -

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

+

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

TODO: drop down box of your friends

<%end%> <%= error_messages_for 'message' %> -<% form_tag :controller => 'message', :action => 'new' do %> -subject: <%= text_field 'message', 'title' %>
-body: <%= text_area 'message', 'body' %>
- <%= submit_tag 'Send' %> +<% form_for :message do |f| %> + + + + + + + + + + + + + +
Subject<%= f.text_field :title, :size => 60 %>
Body<%= f.text_area :body, :cols => 80 %>
<%= submit_tag 'Send' %>
<% end %>
-<%= link_to 'Back to my account', :controller => 'user', :action => 'account' %> +<%= link_to 'Back to inbox', :controller => 'message', :action => 'inbox', :display_name => @user.display_name %>