##// END OF EJS Templates
Fixed 9793 Preview fail for first wiki page of a project...
Fixed 9793 Preview fail for first wiki page of a project git-svn-id: http://redmine.rubyforge.org/svn/trunk@411 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r334:e6f58e4dcc2f
r408:18a6b8e1012c
Show More
_issuesassignedtome.rhtml
10 lines | 569 B | text/html+ruby | RhtmlLexer
/ app / views / my / blocks / _issuesassignedtome.rhtml
<h3><%=l(:label_assigned_to_me_issues)%></h3>
<% assigned_issues = Issue.find(:all,
:conditions => ["assigned_to_id=?", user.id],
:limit => 10,
:include => [ :status, :project, :tracker ],
:order => "#{Issue.table_name}.updated_on DESC") %>
<%= render :partial => 'issues/list_simple', :locals => { :issues => assigned_issues } %>
<% if assigned_issues.length > 0 %>
<p><%=lwr(:label_last_updates, assigned_issues.length)%></p>
<% end %>