X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/b955a7e78ea75ea5587d4bee0d64254e4b2d74eb..c38a50fc5f43a185dda39fd1aa235a2bda8ad83b:/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 3c2264d3e..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 %>
@@ -12,25 +12,27 @@
-<%= 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 current_user and @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 %>
- <% elsif current_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 %>