X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/cebb05a3ba6313c245509d7966cec184936f9c42..d66541124fdf6d4da22c3c26ef24b205c486c3a7:/app/views/diary_entries/index.html.erb
diff --git a/app/views/diary_entries/index.html.erb b/app/views/diary_entries/index.html.erb
index 59fa96a83..17ddba62e 100644
--- a/app/views/diary_entries/index.html.erb
+++ b/app/views/diary_entries/index.html.erb
@@ -1,62 +1,60 @@
<% content_for :heading do %>
-
id="userinformation"<% end %> >
+
id="userinformation"<% end %>>
<% if @user %>
<%= user_image @user %>
<% end %>
-
<%= h(@title) %>
+
<%= @title %>
-
+
<% unless params[:friends] or params[:nearby] -%>
- - <%= rss_link_to :action => 'rss', :language => params[:language] %>
+ - <%= rss_link_to :action => "rss", :language => params[:language] %>
<% end -%>
- <% if @user %>
- <% if @user == current_user %>
-
-
- <%= link_to image_tag("new.png", :class => "small_icon", :border => 0) + t('.new'), diary_new_path, :title => t('.new_title') %>
-
- <% end %>
- <% else %>
- <% if current_user %>
-
-
- <%= link_to image_tag("new.png", :class => "small_icon", :border => 0) + t('.new'), diary_new_path, :title => t('.new_title') %>
-
- <% end %>
+ <% if @user && @user == current_user || !@user && current_user %>
+ - <%= link_to image_tag("new.png", :class => "small_icon") + t(".new"), new_diary_entry_path, :title => t(".new_title") %>
+ <% end %>
+
+ <% if !@user && current_user %>
+ - <%= link_to t(".my_diary"), :controller => "diary_entries", :action => "index", :display_name => current_user.display_name %>
<% end %>
<% end %>
<% if @entries.empty? %>
-
<%= t '.no_entries' %>
+
<%= t ".no_entries" %>
<% else %>
-
<%= t '.recent_entries' %>
-
- <% if @user %>
- <%= render :partial => 'diary_entry', :collection => @entries %>
- <% else %>
- <%= render :partial => 'diary_index_entry', :collection => @entries %>
- <% end %>
-
-
+
<%= t ".recent_entries" %>
+
+ <%= render @entries %>
+
+
<% end %>
<% unless params[:friends] or params[:nearby] -%>
<% content_for :auto_discovery_link_tag do -%>
- <%= auto_discovery_link_tag :rss, :action => 'rss', :language => params[:language] %>
+ <%= auto_discovery_link_tag :rss, :action => "rss", :language => params[:language] %>
<% end -%>
<% end -%>