<%= link_to h(user.login), {:action => "show", :id => user.id} %>

<%= _("Number of Articles")%>: <%= Article.count :conditions => "user_id = #{user.id}" %>

<%= _("Number of Comments")%>: <%= Comment.count :conditions => "user_id = #{user.id}" %>

<%= _("Notified") %> <% if user.notify_via_email? %> <%= _("via email") %> <% end %>: <%= "new articles" if user.notify_on_new_articles? %> <%= "comments" if user.notify_on_comments? %>

<%= link_to _('Edit'), :action => 'edit', :id => user %> | <%= link_to _('Delete'), :action => 'destroy', :id => user %>