X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/150895fb92519e2485ba409e1f6152d525c32965..d8d1ab17764e5e0a7af99248cb5047d2af99d534:/app/views/diary_entries/index.html.erb?ds=sidebyside
diff --git a/app/views/diary_entries/index.html.erb b/app/views/diary_entries/index.html.erb
index 32a4e1e0f..80561cbbf 100644
--- a/app/views/diary_entries/index.html.erb
+++ b/app/views/diary_entries/index.html.erb
@@ -1,3 +1,4 @@
+<% content_for :head, tag(:meta, :name => :robots, :content => :noindex) %>
<% content_for :heading do %>
id="userinformation"<% end %>>
<% if @user %>
@@ -5,19 +6,17 @@
<% end %>
<%= @title %>
-
+
<% unless params[:friends] or params[:nearby] -%>
- <%= rss_link_to :action => "rss", :language => params[:language] %>
<% end -%>
- <% if @user %>
- <% if @user == current_user %>
- - <%= link_to image_tag("new.png", :class => "small_icon") + t(".new"), new_diary_entry_path, :title => t(".new_title") %>
- <% end %>
- <% else %>
- <% if current_user %>
- - <%= link_to image_tag("new.png", :class => "small_icon") + t(".new"), new_diary_entry_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 %>
@@ -30,21 +29,29 @@
<%= render @entries %>
-
+ <% if @page > 1 -%>
+
+ <%= link_to t(".newer_entries"), @params.merge(:page => @page - 1), :class => "page-link" %>
+
+ <% else -%>
+
+ <%= t(".newer_entries") %>
+
+ <% end -%>
+
+
<% end %>
<% unless params[:friends] or params[:nearby] -%>