##// END OF EJS Templates
fixed #9397 Roadmap - Distinguishing open and closed issues...
Jean-Philippe Lang -
r357:6e98df0e28ff
parent child
Show More
@@ -20,8 +20,12
20 20 <p><%= format_date(version.effective_date) %><br />
21 21 <%=h version.description %></p>
22 22 <ul>
23 <% version.fixed_issues.find(:all, :conditions => ["issues.tracker_id in (#{@selected_tracker_ids.join(',')})"]).each do |issue| %>
24 <li><%= link_to "#{issue.tracker.name} #{issue.id}", :controller => 'issues', :action => 'show', :id => issue %>: <%=h issue.subject %></li>
23 <% version.fixed_issues.find(:all,
24 :include => :status,
25 :conditions => ["tracker_id in (#{@selected_tracker_ids.join(',')})"],
26 :order => "position").each do |issue| %>
27 <li><%= link_to "#{issue.tracker.name} #{issue.id}", :controller => 'issues', :action => 'show', :id => issue %>: <%=h issue.subject %>
28 <%= content_tag "em", "(#{l(:label_closed_issues)})" if issue.status.is_closed? %></li>
25 29 <% end %>
26 30 </ul>
27 31 <% end %>
General Comments 0
You need to be logged in to leave comments. Login now