X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/aa52ebe6749ba1ea43030f173bfe2101d0f77dc3..a894e75a1d898804ea6bc41c73384135ed83e87e:/app/views/message/new.rhtml diff --git a/app/views/message/new.rhtml b/app/views/message/new.rhtml index 6e268e905..44ef84dfc 100644 --- a/app/views/message/new.rhtml +++ b/app/views/message/new.rhtml @@ -9,12 +9,23 @@ <%= 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 %>
<%= f.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 %>