diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2012-02-22 14:36:16 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2012-02-22 14:36:16 +0000 |
commit | d7692b25757500602d24f5694800f2afbde18791 (patch) | |
tree | 29912949baf5a78f4a558568d331bb62999117dc /app/views/users | |
parent | 4fcac7d3b1295408a9d64e64aa17800f4ad31299 (diff) | |
download | redmine-d7692b25757500602d24f5694800f2afbde18791.tar.gz redmine-d7692b25757500602d24f5694800f2afbde18791.zip |
code layout cleanup app/views/users/show.html.erb
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8921 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/users')
-rw-r--r-- | app/views/users/show.html.erb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/views/users/show.html.erb b/app/views/users/show.html.erb index 4ff40aa1c..8c32235b7 100644 --- a/app/views/users/show.html.erb +++ b/app/views/users/show.html.erb @@ -35,7 +35,9 @@ <div class="splitcontentright"> <% unless @events_by_day.empty? %> -<h3><%= link_to l(:label_activity), :controller => 'activities', :action => 'index', :id => nil, :user_id => @user, :from => @events_by_day.keys.first %></h3> +<h3><%= link_to l(:label_activity), :controller => 'activities', + :action => 'index', :id => nil, :user_id => @user, + :from => @events_by_day.keys.first %></h3> <p> <%=l(:label_reported_issues)%>: <%= Issue.count(:conditions => ["author_id=?", @user.id]) %> |