##// END OF EJS Templates
Added atom feed on the new cross-project issue list....
Added atom feed on the new cross-project issue list. git-svn-id: http://redmine.rubyforge.org/svn/trunk@686 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r673:404bfce44691
r675:c68dac7e9ad0
Show More
_issuesreportedbyme.rhtml
10 lines | 700 B | text/html+ruby | RhtmlLexer
/ app / views / my / blocks / _issuesreportedbyme.rhtml
<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 class="small"><%= link_to l(:label_issue_view_all), :controller => 'issues', :action => 'index', :set_filter => 1, :author_id => 'me' %></p>
<% end %>