]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/diary_entry/list.rhtml
Make a few more strings translatable in the diary entry controller
[rails.git] / app / views / diary_entry / list.rhtml
index 8a60c1863a63be1d0b9e89197fc9c1a6ada058ad..00937d89e0001d9c765596ceb2cc0575dec7b5a2 100644 (file)
@@ -1,14 +1,39 @@
-<% if @this_user %>
-  <h2><%= @this_user.display_name %>'s diary</h2>
+<h2><%= h(@title) %></h2>
+
+<% if @this_user && @this_user.image %>
+ <%= image_tag url_for_file_column(@this_user, "image") %>
+<% end %>
 
-  <% if @user and @this_user.id == @user.id %>
-    <%= link_to 'New diary post', :controller => 'diary_entry', :action => 'new', :display_name => @user.display_name %>
+
+<% if @this_user %>
+  <% if @user == @this_user %>
+    <%= link_to image_tag("new.png", :border=>0) + t('diary_entry.list.new'), {:controller => 'diary_entry', :action => 'new', :display_name => @user.display_name}, {:title => t('diary_entry.list.new_title')} %>
+  <% end %>
+<% else %>
+  <% if @user %>
+    <%= link_to image_tag("new.png", :border=>0) + t('diary_entry.list.new'), {:controller => 'diary_entry', :action => 'new', :display_name => @user.display_name}, {:title => t('diary_entry.list.new_title')} %>
   <% end %>
 <% end %>
 
-<h3>Recent diary entries:</h3>
 
-<%= render :partial => 'diary_entry/diary_entry', :collection => @entries %>
+<% if @entries.empty? %>
+  <p><%= t 'diary_entry.list.no_entries' %></p>
+<% else %>
+  <p><%= t 'diary_entry.list.recent_entries' %></p>
 
-<%= link_to(image_tag("RSS.gif", :size => "16x16", :border => 0), :action => 'rss') %>
-<%= auto_discovery_link_tag(:atom, :action => 'rss') %>
+  <hr />
+
+  <%= render :partial => 'diary_entry', :collection => @entries %>
+       
+  <%= link_to t('diary_entry.list.older_entries'), { :page => @entry_pages.current.next } if @entry_pages.current.next %>
+  <% if @entry_pages.current.next and @entry_pages.current.previous %>|<% end %>
+  <%= link_to t('diary_entry.list.newer_entries'), { :page => @entry_pages.current.previous } if @entry_pages.current.previous %>
+
+  <br />
+<% end %>
+
+<%= rss_link_to :action => 'rss' %>
+
+<% content_for :head do %>
+<%= auto_discovery_link_tag :atom, :action => 'rss' %>
+<% end %>