X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/52395b3cdf4d3cfae95730158edeeccf3d062a8e..c3ad6aa2923c03aeeea0b57033b0a9238d262aa2:/app/views/diary_entry/view.html.erb diff --git a/app/views/diary_entry/view.html.erb b/app/views/diary_entry/view.html.erb index c3e49a227..8bc2b6469 100644 --- a/app/views/diary_entry/view.html.erb +++ b/app/views/diary_entry/view.html.erb @@ -1,26 +1,36 @@ -<%= user_image @entry.user, :style => "float: right" %> - -

<%= t 'diary_entry.view.user_title', :user => h(@entry.user.display_name) %>

+<% content_for :heading do %> +
+ <%= user_image @entry.user %> +

<%= link_to t('diary_entry.view.user_title', :user => h(@entry.user.display_name)), :action => :list %>

+

<%= rss_link_to :action => :rss, :display_name => @entry.user.display_name %>

+
+<% end %> <%= render :partial => 'diary_entry', :object => @entry %> - -<%= render :partial => 'diary_comment', :collection => @entry.visible_comments %> - -<% if_logged_in(:div) do %> -

<%= t 'diary_entry.view.leave_a_comment' %>

+
+ <% if @reported_comment %> + <%= render :partial => 'diary_comment', :collection => @reported_comment %> + <% else %> + <%= render :partial => 'diary_comment', :collection => @entry.visible_comments %> + <% end %> +
+<%= if_logged_in(:div) do %> +

<%= t 'diary_entry.view.leave_a_comment' %>

<%= error_messages_for 'diary_comment' %> - <% form_for :diary_comment, @diary_comment, :url => { :action => 'comment' } do |f| %> - <%= f.text_area :body, :cols => 80, :rows => 5 %> -
-
+ <%= form_for :diary_comment, :url => { :action => 'comment' } do |f| %> + <%= richtext_area :diary_comment, :body, :cols => 80, :rows => 15 %> <%= submit_tag t('diary_entry.view.save_button') %> <% end %> <% end %> -<% if_not_logged_in(:div) do %> -

<%= t("diary_entry.view.login_to_leave_a_comment", :login_link => link_to(t("diary_entry.view.login"), :controller => 'user', :action => 'login', :referer => request.request_uri)) %>

+<%= if_not_logged_in(:div) do %> +

<%= raw t("diary_entry.view.login_to_leave_a_comment", :login_link => link_to(t("diary_entry.view.login"), :controller => 'user', :action => 'login', :referer => request.fullpath)) %>

<% end %> + +<% content_for :auto_discovery_link_tag do -%> +<%= auto_discovery_link_tag :rss, :action => :rss, :display_name => @entry.user.display_name %> +<% end -%>