openstreetmap-website/app/views/message/new.rhtml
2009-05-31 15:37:18 +00:00

24 lines
766 B
Text

<h2><%= t'message.new.send_message_to', :name => h(@to_user.display_name) %></h2>
<%= error_messages_for 'message' %>
<% form_for :message, :url => { :action => "new", :user_id => @to_user.id } do |f| %>
<table>
<tr valign="top">
<th><%= t'message.new.subject' %></th>
<td><%= f.text_field :title, :size => 60, :value => @title %></td>
</tr>
<tr valign="top">
<th><%= t'message.new.body' %></th>
<td><%= f.text_area :body, :cols => 80, :value => @body %></td>
</tr>
<tr>
<th></th>
<td><%= submit_tag t('message.new.send_button') %></td>
</tr>
</table>
<% end %>
<br />
<%= link_to t('message.new.back_to_inbox'), :controller => 'message', :action => 'inbox', :display_name => @user.display_name %>