]> git.openstreetmap.org Git - rails.git/commitdiff
Add user images to lists of diary entries.
authorTom Hughes <tom@compton.nu>
Sun, 28 Feb 2010 09:01:19 +0000 (09:01 +0000)
committerTom Hughes <tom@compton.nu>
Sun, 28 Feb 2010 09:01:19 +0000 (09:01 +0000)
app/views/diary_entry/_diary_list_entry.html.erb [new file with mode: 0644]
app/views/diary_entry/list.html.erb

diff --git a/app/views/diary_entry/_diary_list_entry.html.erb b/app/views/diary_entry/_diary_list_entry.html.erb
new file mode 100644 (file)
index 0000000..65ee73f
--- /dev/null
@@ -0,0 +1,2 @@
+<%= user_thumbnail diary_list_entry.user, :style => "float: right" %>
+<%= render :partial => "diary_entry", :object => diary_list_entry %>
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 %>
 
 <% end %>
 
+<h2><%= h(@title) %></h2>
 
 <% if @this_user %>
   <% if @user == @this_user %>
 
 <% if @this_user %>
   <% if @user == @this_user %>
 
   <hr />
 
 
   <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 %>
   <%= 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 %>