<%= l(:backlogs_story) %> | <% @statuses.each do |status| %><%= status.name %> | <% end %>
<%= l(:label_sprint_impediments) %> |
+ | <% @statuses.each do |status| %><%= render :partial => "rb_impediments/impediment", :collection => @sprint.impediments.select { |impediment| impediment.status_id == status.id } %> | <% end %>
<%= link_to story.id, :controller => 'issues', :action => 'show', :id => story %>
<%= story.subject %>
|
+ | <% @statuses.each do |status| %><%= render :partial => "rb_tasks/task", :collection => story.descendants.select { |task| task.status.id == status.id } %> | <% end %>