X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/7d52305640d647d97c7904e447ad48e6d0e2f694..9f909d7447b0d9327d9033a8c9ab0bc6e597bf80:/app/views/message/new.rhtml diff --git a/app/views/message/new.rhtml b/app/views/message/new.rhtml index 4075d543e..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' %> -<%= 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 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 %>