]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/diary_entry/list.html.erb
Merge -r 20198:20540 from trunc into openstreetbugs branch
[rails.git] / app / views / diary_entry / list.html.erb
index 0bc17d2bb14324f030b9824c87bafb57bca78d5d..9fbb9ca32aba72d812955446cb3ef04ca548b1f4 100644 (file)
@@ -1,9 +1,8 @@
-<h2><%= h(@title) %></h2>
-
-<% if @this_user && @this_user.image %>
- <%= image_tag url_for_file_column(@this_user, "image") %>
+<% if @this_user %>
+<%= user_image @this_user, :style => "float: right" %>
 <% end %>
 
+<h2><%= h(@title) %></h2>
 
 <% if @this_user %>
   <% if @user == @this_user %>
 
   <hr />
 
-  <%= render :partial => 'diary_entry', :collection => @entries %>
-       
+  <% if @this_user %>
+    <%= render :partial => 'diary_entry', :collection => @entries %>
+  <% else %>
+    <%= render :partial => 'diary_list_entry', :collection => @entries %>
+  <% end %>
+
   <%= link_to t('diary_entry.list.older_entries'), { :page => @entry_pages.current.next, :language => params[:language] } 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, :language => params[:language] } if @entry_pages.current.previous %>