X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/3af16f6337b52546297e7e09a1aba9b0e1df7e15..4d47cff5e1d359fa27c5c46d2706faae39a3eacc:/app/views/messages/new.html.erb diff --git a/app/views/messages/new.html.erb b/app/views/messages/new.html.erb index dedace3d7..2899c2ff7 100644 --- a/app/views/messages/new.html.erb +++ b/app/views/messages/new.html.erb @@ -1,23 +1,12 @@ <% content_for :heading do %> -

<%= raw(t ".send_message_to", :name => link_to(h(@message.recipient.display_name), user_path(@message.recipient))) %>

+

<%= t(".send_message_to_html", :name => link_to(@message.recipient.display_name, user_path(@message.recipient))) %>

<% end %> -<%= error_messages_for "message" %> - -<%= form_for @message, :html => { :class => "standard-form" } do |f| %> +<%= bootstrap_form_for @message do |f| %> <%= hidden_field_tag :display_name, @message.recipient.display_name %> -
-
- - <%= f.text_field :title, :size => 60, :class => "richtext_title" %> -
-
- - <%= richtext_area :message, :body, :cols => 80, :rows => 20 %> -
-
- <%= submit_tag t(".send_button") %> - <%= link_to t(".back_to_inbox"), inbox_messages_path, :class => "deemphasize button" %> -
-
+ <%= f.text_field :title %> + <%= f.richtext_field :body, :cols => 80, :rows => 20 %> + + <%= f.primary %> + <%= link_to t(".back_to_inbox"), inbox_messages_path, :class => "btn btn-link" %> <% end %>