X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/dbd88d893f3c3fce9cafd666b94396988646d81f..c38a50fc5f43a185dda39fd1aa235a2bda8ad83b:/app/views/diary_entry/view.html.erb?ds=sidebyside
diff --git a/app/views/diary_entry/view.html.erb b/app/views/diary_entry/view.html.erb
index 23a5230c1..9871da8cc 100644
--- a/app/views/diary_entry/view.html.erb
+++ b/app/views/diary_entry/view.html.erb
@@ -1,7 +1,7 @@
<% content_for :heading do %>
<% end %>
@@ -10,31 +10,29 @@
-<%= if_logged_in(:div) do %>
-
- <%= 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('diary_entry.view.save_button') %>
- <% end %>
- <% if @user and @entry.subscribers.exists?(@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 %>
- <% elsif @user %>
- <%= 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 %>
-<% end %>
+
+ <% if current_user %>
+
-<%= if_not_logged_in(:div) do %>
-
-<% end %>
+ <%= 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 %>
+
<% content_for :auto_discovery_link_tag do -%>
<%= auto_discovery_link_tag :rss, :action => :rss, :display_name => @entry.user.display_name %>