summaryrefslogtreecommitdiffstats
path: root/app/views/my/blocks/_issuesreportedbyme.rhtml
blob: 250e8265dae0ae0ba5f0e65ed36a69ae1c99e699 (plain)
1
2
3
4
5
6
7
8
9
10
<h3><%=l(:label_reported_issues)%></h3>
<% reported_issues = Issue.find(:all, 
                                :conditions => ["author_id=? AND #{Project.table_name}.status=#{Project::STATUS_ACTIVE}", user.id],
                                :limit => 10, 
                                :include => [ :status, :project, :tracker ], 
                                :order => "#{Issue.table_name}.updated_on DESC") %>
<%= render :partial => 'issues/list_simple', :locals => { :issues => reported_issues } %>
<% if reported_issues.length > 0 %>
<p><%=lwr(:label_last_updates, reported_issues.length)%></p>
<% end %>