##// END OF EJS Templates
updated UPGRADING doc file...
updated UPGRADING doc file git-svn-id: http://redmine.rubyforge.org/svn/trunk@254 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r239:08ff4dfb216c
r251:4ef86b965b0d
Show More
_issuesreportedbyme.rhtml
9 lines | 553 B | text/html+ruby | RhtmlLexer
/ app / views / my / blocks / _issuesreportedbyme.rhtml
Jean-Philippe Lang
- new controller "myController"...
r60 <h3><%=l(:label_reported_issues)%></h3>
<% reported_issues = Issue.find(:all,
:conditions => ["author_id=?", user.id],
:limit => 10,
:include => [ :status, :project, :tracker ],
:order => 'issues.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 %>