- <% if !@user %>
- <%= user_thumbnail diary_entry.user %>
+
+ <% if @user %>
+
<%= link_to diary_entry.title, diary_entry_path(diary_entry.user, diary_entry) %>
+ <% else %>
+
+
+ <%= user_thumbnail diary_entry.user %>
+
+
+
<%= link_to diary_entry.title, diary_entry_path(diary_entry.user, diary_entry) %>
+
+
<% end %>
-
<%= link_to diary_entry.title, diary_entry_path(diary_entry.user, diary_entry) %>
-
<%= t(".posted_by_html", :link_user => (link_to diary_entry.user.display_name, user_path(diary_entry.user)), :created => l(diary_entry.created_at, :format => :blog), :language_link => (link_to diary_entry.language.name, :controller => "diary_entries", :action => "index", :display_name => nil, :language => diary_entry.language_code)) %>
<% if (l(diary_entry.updated_at, :format => :blog) != l(diary_entry.created_at, :format => :blog)) %>
@@ -28,7 +35,13 @@
<% if params[:action] == 'index' %>
<%= link_to t(".comment_link"), diary_entry_path(diary_entry.user, diary_entry, :anchor => "newcomment") %>
<%= link_to t(".reply_link"), new_message_path(diary_entry.user, :message => { :title => "Re: #{diary_entry.title}" }) %>
- <%= link_to t(".comment_count", :count => diary_entry.visible_comments.count), diary_entry_path(diary_entry.user, diary_entry, :anchor => "comments") %>
+
+ <% if diary_entry.visible_comments.count > 0 %>
+ <%= link_to t(".comment_count", :count => diary_entry.visible_comments.count), diary_entry_path(diary_entry.user, diary_entry, :anchor => "comments") %>
+ <% else %>
+ <%= link_to t(".no_comments"), diary_entry_path(diary_entry.user, diary_entry, :anchor => "comments") %>
+ <% end %>
+
<% end %>
<% if current_user && current_user == diary_entry.user %>