X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/3e8d8092500a3713e8dfbb4fd61fd8a95d067d20..bc056a5e986df1efbbffa17df7c39e5201064537:/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 312b7b81a..d12942a7b 100644
--- a/app/views/diary_entry/view.html.erb
+++ b/app/views/diary_entry/view.html.erb
@@ -1,26 +1,32 @@
-<%= user_image @entry.user, :style => "float: right" %>
-
-
<%= t 'diary_entry.view.user_title', :user => h(@entry.user.display_name) %>
+<% content_for :heading do %>
+
+<% end %>
<%= render :partial => 'diary_entry', :object => @entry %>
-
+
+<%= if_logged_in(:div) do %>
+
-<% if @user %>
+ <%= error_messages_for 'diary_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 %>
-
-
-<%= submit_tag t('diary_entry.view.save_button') %>
+ <%= 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 %>
-<% else %>
-
-
-
+<%= if_not_logged_in(:div) do %>
+
<% end %>
+
+<% content_for :auto_discovery_link_tag do -%>
+<%= auto_discovery_link_tag :rss, :action => :rss, :display_name => @entry.user.display_name %>
+<% end -%>