X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/001ff5764bcf15aaa179dc5c7844038676536622..a1b179fa384d689e6cb78c2b8d863621e7bff152:/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 1a8096d13..9871da8cc 100644
--- a/app/views/diary_entry/view.html.erb
+++ b/app/views/diary_entry/view.html.erb
@@ -1,26 +1,39 @@
-<%= user_image @entry.user, :style => "float: right" %>
-
-
+ <% if current_user %>
+
+
+ <%= error_messages_for 'diary_comment' %>
+
+ <%= form_for :diary_comment, :url => { :action => 'comment' } do |f| %>
+ <%= richtext_area :diary_comment, :body, :cols => 80, :rows => 15 %>
+ <%= submit_tag t('.save_button') %>
+ <% end %>
+ <% if @entry.subscribers.exists?(current_user.id) %>
+
<%= link_to t('javascripts.changesets.show.unsubscribe'), diary_entry_unsubscribe_path(:display_name => @entry.user.display_name, :id => @entry.id), :method => :post, :class => :button %>
+ <% else %>
+
<%= link_to t('javascripts.changesets.show.subscribe'), diary_entry_subscribe_path(:display_name => @entry.user.display_name, :id => @entry.id), :method => :post, :class => :button %>
+ <% end %>
+ <% else %>
+
<% end %>
-<% end %>
+
-<% 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 -%>
<%= 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 %> --
- <%= submit_tag t('diary_entry.view.save_button') %> +