Index: app/views/users/show.html.erb =================================================================== --- app/views/users/show.html.erb (revision 14155) +++ app/views/users/show.html.erb (working copy) @@ -43,7 +43,9 @@ :from => @events_by_day.keys.first %>

-<%=l(:label_reported_issues)%>: <%= Issue.where(:author_id => @user.id).count %> +<% reported_issues = Issue.where(:author_id => @user.id) -%> +<%=l(:label_reported_issues)%>: +<%= link_to_if(reported_issues.count > 0, l(:label_x_issues, :count => reported_issues.count), issues_path(:set_filter => 1, :status_id => '*', :author_id => @user.id)) %>