##// END OF EJS Templates
Adds links between account and user's activity pages....
Jean-Philippe Lang -
r2068:0399b85ab618
parent child
Show More
@@ -31,7 +31,7
31 <div class="splitcontentright">
31 <div class="splitcontentright">
32
32
33 <% unless @events_by_day.empty? %>
33 <% unless @events_by_day.empty? %>
34 <h3><%=l(:label_activity)%></h3>
34 <h3><%= link_to l(:label_activity), :controller => 'projects', :action => 'activity', :user_id => @user, :from => @events_by_day.keys.first %></h3>
35
35
36 <p>
36 <p>
37 <%=l(:label_reported_issues)%>: <%= Issue.count(:conditions => ["author_id=?", @user.id]) %>
37 <%=l(:label_reported_issues)%>: <%= Issue.count(:conditions => ["author_id=?", @user.id]) %>
@@ -1,4 +1,4
1 <h2><%= @author.nil? ? l(:label_activity) : l(:label_user_activity, @author.to_s) %></h2>
1 <h2><%= @author.nil? ? l(:label_activity) : l(:label_user_activity, link_to_user(@author)) %></h2>
2 <p class="subtitle"><%= "#{l(:label_date_from)} #{format_date(@date_to - @days)} #{l(:label_date_to).downcase} #{format_date(@date_to-1)}" %></p>
2 <p class="subtitle"><%= "#{l(:label_date_from)} #{format_date(@date_to - @days)} #{l(:label_date_to).downcase} #{format_date(@date_to-1)}" %></p>
3
3
4 <div id="activity">
4 <div id="activity">
General Comments 0
You need to be logged in to leave comments. Login now